-
Notifications
You must be signed in to change notification settings - Fork 1
/
tag.list.html
52 lines (44 loc) · 1.05 KB
/
tag.list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
<head>
{include="includes"}
</head>
<body class="text-light bg-dark">
{include="page.header"}
<h2>{'Tags'|t}</h2>
<div class="my-4">
{include="tag.sort"}
</div>
<div class="my-4">
<div id="plugin_zone_start_tagcloud">
{loop="$plugin_start_zone"}
{$value}
{/loop}
</div>
<ol id="taglist">
{loop="tags"}
<li>
<a href="?addtag={$key|urlencode}"
title="{'Filter by tag'|t}"
aria-label="{'Filter by tag'|t}"
>{$key}</a>
<a href="?searchtags={$key|urlencode}{if="!empty($search_tags)"}+{$search_tags|urlencode}{/if}"
title="{'List all'|t} {$value}"
aria-label="{'List all'|t} {$value}"
class="badge badge-secondary"
>{$value}</a>
{loop="$value.tag_plugin"}
{$value}
{/loop}
</li>
{/loop}
</ol>
<div id="plugin_zone_end_tagcloud">
{loop="$plugin_end_zone"}
{$value}
{/loop}
</div>
</div>
{include="page.footer"}
</body>
</html>