cd5327bee8
Relates to https://github.com/shaarli/netscape-bookmark-parser/issues/5 Fixes: - respect the Netscape bookmark format "specification" Modifications: - [application] introduce the NetscapeBookmarkUtils class - [template] export - improve formatting, rename export selection parameter - [template] export.bookmarks - template for Netscape exports - [tests] bookmark filtering, additional field generation Signed-off-by: VirtualTam <virtualtam@flibidi.net>
22 lines
615 B
HTML
22 lines
615 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>{include="includes"}</head>
|
|
<body>
|
|
<div id="pageheader">
|
|
{include="page.header"}
|
|
<div id="toolsdiv">
|
|
<a href="?do=export&selection=all">
|
|
<b>Export all</b><span>: Export all links</span>
|
|
</a><br>
|
|
<a href="?do=export&selection=public">
|
|
<b>Export public</b><span>: Only export public links</span>
|
|
</a><br>
|
|
<a href="?do=export&selection=private">
|
|
<b>Export private</b><span>: Only export private links</span>
|
|
</a>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|