Shaarlet/tpl/linklist.html

144 lines
6.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
{include="includes"}
</head>
<body>
<div id="pageheader">
{include="page.header"}
<div id="headerform" style="width:100%; white-space:nowrap;">
<form method="get" class="searchform" name="searchform" style="display:inline;">
<input type="text" id="searchform_value" name="searchterm" style="width:30%" value="">
<input type="submit" value="Search" class="bigbutton">
</form>
<form method="get" class="tagfilter" name="tagfilter" style="display:inline;margin-left:24px;">
<input type="text" name="searchtags" id="tagfilter_value" style="width:10%" value="">
<input type="submit" value="Filter by tag" class="bigbutton">
</form>
</div>
</div>
<div id="findSnippet">
{include="findSnippet"}
</div>
<div id="linklist">
{include="linklist.paging"}
{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"} <span class="linktag" title="Remove tag"><a href="?removetag={$value|htmlspecialchars}">{$value|htmlspecialchars} <span style="border-left:1px solid #aaa; padding-left:5px; color:#6767A7;">x</span></a></span> {/loop}</i>
</div>
{/if}
{/if}
<ul>
{loop="links"}
<li {if="$value.class"} class="{$value.class}"{/if}>
<div class="linkInfo">
{if="$value.tags"}
<div class="linktaglist">
{loop="value.taglist"}<span class="linktag" title="Add tag"><a href="?addtag={$value|urlencode}">{$value|htmlspecialchars}</a></span> {/loop}
</div>
{/if}
{if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"}
<span class="linkdate" title="Permalink"><a href="?{$value.linkdate|smallHash}">{$value.localdate|htmlspecialchars} - permalink</a> - </span>
{else}
<span class="linkdate" title="Short link here"><a href="?{$value.linkdate|smallHash}">permalink</a> - </span>
{/if}
<span>
<a href="http://invx.com/code/qrcode/?code={$scripturl|urlencode}%3F{$value.linkdate|smallHash}&width=200&height=200" onclick="return false;" class="qrcode"><img src="images/qrcode.png#" width="13" height="13" title="QR-Code"></a>
</span>
{if="$value.via"}
<span><a href="{$value.via}">@ via {$value.via|getJustDomain}</a></span>
{/if}
</div>
<div class="linkcontainer">
<span class="linktitle"><a href="{$redirector}{$value.url|htmlspecialchars}" name="{$value.linkdate|smallHash}" id="{$value.linkdate|smallHash}">{$value.title|htmlspecialchars}</a></span>
{if="isLoggedIn()"}
<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>
<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>
{/if}
<br>
{if="$value.description"}
<div class="linkdescription"{if condition="$search_type=='permalink'"} style="max-height:none !important;"{/if}>
{$value.description}
</div>
{/if}
{if="$value.snippet"}<a href="#" class="toggle">Afficher le snippet</a>
<div class="toggleSnippet">
<pre class="snippet"{if condition="$search_type=='permalink'"} style="max-height:none !important;"{/if}><code id="id_{$value.linkdate}">{$value.snippet}
</code></pre>
<a href="#" class="selectAll" data-id="id_{$value.linkdate}">Selectionner le code</a>
</div>
{/if}
</div>
<span class="clearFix"></span>
</li>
{/loop}
</ul>
{include="linklist.paging"}
</div>
{include="page.footer"}
<script>
$(document).ready(function() {
$('.toggleSnippet').hide();
$('.toggle').on('click', function() {
$(this).next('div.toggleSnippet').slideToggle();
return false;
});
// Code from http://stackoverflow.com/a/987376
function selectText(element) {
var doc = document, text = doc.getElementById(element), range, selection;
if (doc.body.createTextRange) {//ms
range = doc.body.createTextRange();
range.moveToElementText(text);
range.select();
} else if (window.getSelection) {//all others
selection = window.getSelection();
range = doc.createRange();
range.selectNodeContents(text);
selection.removeAllRanges();
selection.addRange(range);
}
return false;
}
$('.selectAll').on('click', function() {
selectText($(this).data('id'));
return false;
});
$('pre code').each(function(i, e) {
hljs.tabReplace = ' ';
hljs.highlightBlock(e, null, true)
});
$('a.qrcode').click(function() {
hide_qrcode();
var link = $(this).attr('href');
$(this).after('<div class="qrcode" onclick="hide_qrcode();return false;"><img src="' + link + '#" width="200" height="200"><br>click to close</div>');
});
return false;
});
function hide_qrcode() {
$('div.qrcode').remove();
}
</script>
</body>
</html>