aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/tag.cloud.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-03-25 15:57:30 +0100
committerArthurHoaro <arthur@hoa.ro>2017-05-25 15:05:24 +0200
commit5893529cf429f859485bccc88eff47f77fdd770a (patch)
tree193c4146fed9a9e6bf1a706aa2d72b9f3eaf969f /tpl/vintage/tag.cloud.html
parent986a52106766e7497322951c2bf3a3cbd0b42bf9 (diff)
downloadShaarli-5893529cf429f859485bccc88eff47f77fdd770a.tar.gz
Shaarli-5893529cf429f859485bccc88eff47f77fdd770a.tar.zst
Shaarli-5893529cf429f859485bccc88eff47f77fdd770a.zip
Move tagcloud template file to tag.cloud
Diffstat (limited to 'tpl/vintage/tag.cloud.html')
-rw-r--r--tpl/vintage/tag.cloud.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/tpl/vintage/tag.cloud.html b/tpl/vintage/tag.cloud.html
new file mode 100644
index 00000000..d93bf4f9
--- /dev/null
+++ b/tpl/vintage/tag.cloud.html
@@ -0,0 +1,31 @@
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
4<body>
5 <div id="pageheader">{include="page.header"}</div>
6<div class="center">
7 <div id="plugin_zone_start_tagcloud" class="plugin_zone">
8 {loop="$plugin_start_zone"}
9 {$value}
10 {/loop}
11 </div>
12
13 <div id="cloudtag">
14 {loop="$tags"}
15 <a href="?addtag={$key|urlencode}" class="count">{$value.count}</a><a
16 href="?searchtags={$key|urlencode}" style="font-size:{$value.size}em;">{$key}</a>
17 {loop="$value.tag_plugin"}
18 {$value}
19 {/loop}
20 {/loop}
21 </div>
22
23 <div id="plugin_zone_end_tagcloud" class="plugin_zone">
24 {loop="$plugin_end_zone"}
25 {$value}
26 {/loop}
27 </div>
28</div>
29{include="page.footer"}
30</body>
31</html>