aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/tag.cloud.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-05-25 15:28:26 +0200
committerGitHub <noreply@github.com>2017-05-25 15:28:26 +0200
commit81a91579ba8eb7b5a203722baf927a3653b5cb94 (patch)
tree228456f9b4d95d03e97fc9bc1b5004aa599f95ee /tpl/vintage/tag.cloud.html
parent8b27824338eb445d69730c9b05f05b131ccea52f (diff)
parent82e3bb5f06dc531ee1080a0313833791a1c1f3c7 (diff)
downloadShaarli-81a91579ba8eb7b5a203722baf927a3653b5cb94.tar.gz
Shaarli-81a91579ba8eb7b5a203722baf927a3653b5cb94.tar.zst
Shaarli-81a91579ba8eb7b5a203722baf927a3653b5cb94.zip
Merge pull request #835 from ArthurHoaro/feature/tag-cloud
Adds a taglist view with edit/delete buttons
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>