]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/default/tagcloud.html
tag cloud template
[github/shaarli/Shaarli.git] / tpl / default / tagcloud.html
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-8"></div>
11 <div class="pure-u-lg-2-3 pure-u-3-4 page-form page-visitor">
12 {$countTags=count($tags)}
13 <h2>{'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 <span class="count">{$value.count}</span><a
24 href="?searchtags={$key|urlencode}" style="font-size:{$value.size}em;">{$key}</a>
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