]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/linklist.html
Removed jQuery from almost all pages
[github/shaarli/Shaarli.git] / tpl / linklist.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
4<body>
5<div id="pageheader">
af77b2fd
SS
6 {include="page.header"}
7 <div id="headerform" style="width:100%; white-space:nowrap;">
8 <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>
9 <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>
10 </div>
45034273
SS
11</div>
12
13<div id="linklist">
14
15 {include="linklist.paging"}
16
17 {if="count($links)==0"}
18 <div id="searchcriteria">Nothing found.</i></div>
19 {else}
20 {if="$search_type=='fulltext'"}
21 <div id="searchcriteria">{$result_count} results for <i>{$search_crits}</i></div>
22 {/if}
23 {if="$search_type=='tags'"}
24 <div id="searchcriteria">{$result_count} results for tags <i>
25 {loop="search_crits"}
26 <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>
27 {/loop}</i></div>
28 {/if}
29 {/if}
30 <ul>
31 {loop="links"}
32 <li{if="$value.class"} class="{$value.class}"{/if}>
b342b2a4 33 <a name="{$value.linkdate|smallHash}" id="{$value.linkdate|smallHash}"></a>
45034273
SS
34 <div class="thumbnail">{$value.url|thumbnail}</div>
35 <div class="linkcontainer">
45034273 36 {if="isLoggedIn()"}
b2877611
SS
37 <div class="linkeditbuttons">
38 <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>
39 <form method="POST" class="buttoneditform"><input type="hidden" name="lf_linkdate" value="{$value.linkdate}">
40 <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>
41 </div>
45034273 42 {/if}
feebc6d4 43 <span class="linktitle"><a href="{$redirector}{$value.url|htmlspecialchars}">{$value.title|htmlspecialchars}</a></span>
45034273
SS
44 <br>
45 {if="$value.description"}<div class="linkdescription"{if condition="$search_type=='permalink'"} style="max-height:none !important;"{/if}>{$value.description}</div>{/if}
46 {if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"}
47 <span class="linkdate" title="Permalink"><a href="?{$value.linkdate|smallHash}">{$value.localdate|htmlspecialchars} - permalink</a> - </span>
48 {else}
49 <span class="linkdate" title="Short link here"><a href="?{$value.linkdate|smallHash}">permalink</a> - </span>
50 {/if}
af77b2fd
SS
51 <div style="position:relative;display:inline;"><a href="http://qrfree.kaywa.com/?l=1&s=8&d={$scripturl|urlencode}%3F{$value.linkdate|smallHash}"
52 onclick="showQrCode(this); return false;" class="qrcode" data-permalink="{$scripturl}?{$value.linkdate|smallHash}"><img src="images/qrcode.png#" width="13" height="13" title="QR-Code"></a></div> -
45034273
SS
53 <span class="linkurl" title="Short link">{$value.url|htmlspecialchars}</span><br>
54 {if="$value.tags"}
55 <div class="linktaglist">
56 {loop="value.taglist"}<span class="linktag" title="Add tag"><a href="?addtag={$value|urlencode}">{$value|htmlspecialchars}</a></span> {/loop}
57 </div>
58 {/if}
59 </div>
60 </li>
61 {/loop}
62 </ul>
63
64 {include="linklist.paging"}
65
66</div>
67
af77b2fd
SS
68 {include="page.footer"}
69
70<script language="JavaScript">
af77b2fd
SS
71// Remove any displayed QR-Code
72function remove_qrcode()
73{
74 var elem = document.getElementById("permalinkQrcode");
75 if (elem) elem.parentNode.removeChild(elem);
76 return false;
77}
78
79// Show the QR-Code of a permalink (when the QR-Code icon is clicked).
80function showQrCode(caller,loading=false)
81{
82 // Dynamic javascript lib loading: We only load qr.js if the QR code icon is clicked:
83 if (typeof(qr)=='undefined') // Load qr.js only if not present.
84 {
85 if (!loading) // If javascript lib is still loading, do not append script to body.
86 {
87 var element = document.createElement("script");
88 element.src = "inc/qr.min.js";
89 document.body.appendChild(element);
90 }
91 setTimeout(function() { showQrCode(caller,true);}, 200); // Retry in 200 milliseconds.
92 return false;
93 }
94
95 // Remove previous qrcode if present.
96 remove_qrcode();
97
98 // Build the div which contains the QR-Code:
99 var element = document.createElement('div');
100 element.id="permalinkQrcode";
101 // Make QR-Code div commit sepuku when clicked:
102 if ( element.attachEvent ){ element.attachEvent('onclick', 'this.parentNode.removeChild(this);' ); } // Damn IE
103 else { element.setAttribute('onclick', 'this.parentNode.removeChild(this);' ); }
104
105 // Build the QR-Code:
106 var image = qr.image({size: 8,value: caller.dataset.permalink});
107 if (image)
108 {
109 element.appendChild(image);
110 element.innerHTML+= "<br>Click to close";
111 caller.parentNode.appendChild(element);
112 }
113 else
114 {
115 element.innerHTML="Your browser does not seem to be HTML5 compatible.";
116 }
117 return false;
118}
45034273
SS
119</script>
120</body>
af77b2fd 121</html>