c133612f32
Fixes shaarli/Shaarli#29 Style elements refactored as follows: - use existing ids and classes if possible, - else, define new ones and stick with the existing naming convention, - remove hardcoded style attributes from RainTPL templates. Exception: In tpl/tagcloud.html, the display size of each tag is computed at page generation. Signed-off-by: VirtualTam <virtualtam@flibidi.org>
16 lines
518 B
HTML
16 lines
518 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>{include="includes"}</head>
|
|
<body>
|
|
<div id="pageheader">
|
|
{include="page.header"}
|
|
<div id="toolsdiv">
|
|
<a href="?do=export&what=all"><b>Export all</b> <span>: Export all links</span></a><br><br>
|
|
<a href="?do=export&what=public"><b>Export public</b> <span>: Export public links only</a><br><br>
|
|
<a href="?do=export&what=private"><b>Export private</b> <span>: Export private links only</a>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|