aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/tagcloud.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 15:52:17 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit402b03464812aaec76bc841ca7dacb775baf1e03 (patch)
tree5f5ce030a71ed1ac327f60911cb22f0ca87d21cd /tpl/default/tagcloud.html
parent009ce9358168cc06c76fc2f4162829e552e633a3 (diff)
downloadShaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.gz
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.zst
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.zip
Introduce the new default Shaarli template
Diffstat (limited to 'tpl/default/tagcloud.html')
-rw-r--r--tpl/default/tagcloud.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/tpl/default/tagcloud.html b/tpl/default/tagcloud.html
new file mode 100644
index 00000000..53c31748
--- /dev/null
+++ b/tpl/default/tagcloud.html
@@ -0,0 +1,42 @@
1<!DOCTYPE html>
2<html>
3<head>
4 {include="includes"}
5</head>
6<body>
7{include="page.header"}
8
9<div class="pure-g">
10 <div class="pure-u-lg-1-6 pure-u-1-24"></div>
11 <div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor">
12 {$countTags=count($tags)}
13 <h2 class="window-title">{'Tag cloud'|t} - {$countTags} {'tags'|t}</h2>
14
15 <div id="plugin_zone_start_tagcloud" class="plugin_zone">
16 {loop="$plugin_start_zone"}
17 {$value}
18 {/loop}
19 </div>
20
21 <div id="cloudtag">
22 {loop="tags"}
23 <a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}em;">{$key}</a
24 ><span class="count">{$value.count}</span>
25 {loop="$value.tag_plugin"}
26 {$value}
27 {/loop}
28 {/loop}
29 </div>
30
31 <div id="plugin_zone_end_tagcloud" class="plugin_zone">
32 {loop="$plugin_end_zone"}
33 {$value}
34 {/loop}
35 </div>
36 </div>
37</div>
38
39{include="page.footer"}
40</body>
41</html>
42