2013-02-26 10:09:41 +01:00
<!DOCTYPE html>
< html >
2015-06-09 14:23:28 +02:00
< head >
< link type = "text/css" rel = "stylesheet" href = "../inc/awesomplete.css" / >
{include="includes"}
< / head >
2013-02-26 10:09:41 +01:00
< body >
< div id = "pageheader" >
2013-09-25 15:17:09 +02:00
{include="page.header"}
2014-12-02 21:00:52 +01:00
< div id = "headerform" class = "search" >
2015-06-23 15:32:45 +02:00
< form method = "GET" class = "searchform" name = "searchform" >
< input type = "text" tabindex = "1" id = "searchform_value" name = "searchterm" placeholder = "Search text" value = "" > < input type = "submit" value = "Search" class = "bigbutton" > < / form >
2015-06-09 14:23:28 +02:00
< form method = "GET" class = "tagfilter" name = "tagfilter" >
2015-06-23 15:32:45 +02:00
< input type = "text" tabindex = "2" name = "searchtags" id = "tagfilter_value" placeholder = "Filter by tag" value = "" list = "tagsList" autocomplete = "off" class = "awesomplete" data-minChars = "1" >
2015-06-09 14:23:28 +02:00
< datalist id = "tagsList" >
{loop="$tags"}< option > {$key}< / option > {/loop}
< / datalist >
< input type = "submit" value = "Search" class = "bigbutton" >
< / form >
2015-07-15 11:47:12 +02:00
{loop="$plugins_header.fields_toolbar"}
{$value}
{/loop}
2013-09-25 15:17:09 +02:00
< / div >
2013-02-26 10:09:41 +01:00
< / div >
< div id = "linklist" >
{include="linklist.paging"}
2015-07-15 11:47:12 +02:00
< div id = "plugin_zone_start_linklist" class = "plugin_zone" >
{loop="$plugin_start_zone"}
{$value}
{/loop}
< / div >
2013-02-26 10:09:41 +01:00
{if="count($links)==0"}
< div id = "searchcriteria" > Nothing found.< / i > < / div >
{else}
{if="$search_type=='fulltext'"}
< div id = "searchcriteria" > {$result_count} results for < i > {$search_crits}< / i > < / div >
{/if}
{if="$search_type=='tags'"}
< div id = "searchcriteria" > {$result_count} results for tags < i >
{loop="search_crits"}
2015-06-11 13:53:27 +02:00
< span class = "linktag" title = "Remove tag" > < a href = "?removetag={$value}" > {$value} < span class = "remove" > x< / span > < / a > < / span >
2013-02-26 10:09:41 +01:00
{/loop}< / i > < / div >
{/if}
{/if}
< ul >
{loop="links"}
< li { if = "$value.class" } class = "{$value.class}" { / if } >
2015-07-15 11:47:12 +02:00
< a id = "{$value.shorturl}" > < / a >
2013-02-26 10:09:41 +01:00
< div class = "thumbnail" > {$value.url|thumbnail}< / div >
< div class = "linkcontainer" >
{if="isLoggedIn()"}
2013-02-27 17:46:45 +01:00
< div class = "linkeditbuttons" >
< form method = "GET" class = "buttoneditform" > < input type = "hidden" name = "edit_link" value = "{$value.linkdate}" > < input type = "image" alt = "Edit" src = "images/edit_icon.png#" title = "Edit" class = "button_edit" > < / form > < br >
< form method = "POST" class = "buttoneditform" > < input type = "hidden" name = "lf_linkdate" value = "{$value.linkdate}" >
< input type = "hidden" name = "token" value = "{$token}" > < input type = "hidden" name = "delete_link" > < input type = "image" alt = "Delete" src = "images/delete_icon.png#" title = "Delete" class = "button_delete" onClick = "return confirmDeleteLink();" > < / form >
< / div >
2013-02-26 10:09:41 +01:00
{/if}
2015-06-11 13:53:27 +02:00
< span class = "linktitle" > < a href = "{$redirector}{$value.url}" > {$value.title}< / a > < / span >
2013-02-26 10:09:41 +01:00
< br >
2014-12-02 21:00:52 +01:00
{if="$value.description"}< div class = "linkdescription" > {$value.description}< / div > {/if}
2013-02-26 10:09:41 +01:00
{if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"}
2015-03-12 21:57:19 +01:00
< span class = "linkdate" title = "Permalink" > < a href = "?{$value.linkdate|smallHash}" > {function="strftime('%c', $value.timestamp)"} - permalink< / a > - < / span >
2013-02-26 10:09:41 +01:00
{else}
2015-07-15 11:47:12 +02:00
< span class = "linkdate" title = "Short link here" > < a href = "?{$value.shorturl}" > permalink< / a > - < / span >
2013-02-26 10:09:41 +01:00
{/if}
2015-07-15 11:47:12 +02:00
{loop="$value.link_plugin"}
< span > {$value}< / span > -
{/loop}
2015-06-11 13:53:27 +02:00
< a href = "{$value.url}" > < span class = "linkurl" title = "Short link" > {$value.url}< / span > < / a > < br >
2013-02-26 10:09:41 +01:00
{if="$value.tags"}
< div class = "linktaglist" >
2015-06-11 13:53:27 +02:00
{loop="value.taglist"}< span class = "linktag" title = "Add tag" > < a href = "?addtag={$value|urlencode}" > {$value}< / a > < / span > {/loop}
2013-02-26 10:09:41 +01:00
< / div >
{/if}
2015-07-15 11:47:12 +02:00
2013-02-26 10:09:41 +01:00
< / div >
< / li >
{/loop}
< / ul >
2015-07-15 11:47:12 +02:00
< div id = "plugin_zone_end_linklist" class = "plugin_zone" >
{loop="$plugin_end_zone"}
{$value}
{/loop}
< / div >
2013-02-26 10:09:41 +01:00
{include="linklist.paging"}
< / div >
2014-11-21 19:43:53 +01:00
{include="page.footer"}
2013-09-25 15:17:09 +02:00
2015-06-09 14:23:28 +02:00
< script src = "inc/awesomplete.min.js#" > < / script >
2013-02-26 10:09:41 +01:00
< / body >
2013-09-25 15:17:09 +02:00
< / html >