aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/tagcloud.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2015-07-15 11:47:12 +0200
committerArthurHoaro <arthur@hoa.ro>2015-11-07 15:27:22 +0100
commit567967fdf94b2b8ba2b2fc9c8836e89ac23c8c71 (patch)
tree6a8b3b2706b253a782a0b094e977524dccdf68da /tpl/tagcloud.html
parent0aec972a8bee1689ae79a436ae6e4236022b52ef (diff)
downloadShaarli-567967fdf94b2b8ba2b2fc9c8836e89ac23c8c71.tar.gz
Shaarli-567967fdf94b2b8ba2b2fc9c8836e89ac23c8c71.tar.zst
Shaarli-567967fdf94b2b8ba2b2fc9c8836e89ac23c8c71.zip
Template upgrade to handle plugin zones
Add a bunch of plugin placeholders in templates
Diffstat (limited to 'tpl/tagcloud.html')
-rw-r--r--tpl/tagcloud.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/tpl/tagcloud.html b/tpl/tagcloud.html
index 092f2294..5891cd25 100644
--- a/tpl/tagcloud.html
+++ b/tpl/tagcloud.html
@@ -4,9 +4,25 @@
4<body> 4<body>
5 <div id="pageheader">{include="page.header"}</div> 5 <div id="pageheader">{include="page.header"}</div>
6<div class="center"> 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
7 <div id="cloudtag"> 13 <div id="cloudtag">
8 {loop="tags"} 14 {loop="tags"}
9 <span class="count">{$value.count}</span><a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}pt;">{$key}</a> 15 <span class="count">{$value.count}</span>
16 <a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}pt;">{$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}
10 {/loop} 26 {/loop}
11 </div> 27 </div>
12</div> 28</div>