aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/tagcloud.html
diff options
context:
space:
mode:
authornodiscc <nodiscc@gmail.com>2015-01-09 02:34:00 +0100
committernodiscc <nodiscc@gmail.com>2015-01-09 02:34:00 +0100
commita2d5ef2127881561bf359390fac2d8d336a37335 (patch)
tree124a22ed9b66193d2d42df8a5693878046848da5 /tpl/tagcloud.html
parent002f9625ec7d0f7673da1e7098fdea76487d0538 (diff)
parent8079dfd1cdec41a0bb3ee7ec2b974e8e64376d83 (diff)
downloadShaarli-a2d5ef2127881561bf359390fac2d8d336a37335.tar.gz
Shaarli-a2d5ef2127881561bf359390fac2d8d336a37335.tar.zst
Shaarli-a2d5ef2127881561bf359390fac2d8d336a37335.zip
Merge pull request #77 from ArthurHoaro/w3c
Make Shaarli's template W3C compliant #64
Diffstat (limited to 'tpl/tagcloud.html')
-rw-r--r--tpl/tagcloud.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/tpl/tagcloud.html b/tpl/tagcloud.html
index 9418e248..97205e2b 100644
--- a/tpl/tagcloud.html
+++ b/tpl/tagcloud.html
@@ -3,13 +3,13 @@
3<head>{include="includes"}</head> 3<head>{include="includes"}</head>
4<body> 4<body>
5 <div id="pageheader">{include="page.header"}</div> 5 <div id="pageheader">{include="page.header"}</div>
6<center> 6<div class="center">
7<div id="cloudtag"> 7 <div id="cloudtag">
8 {loop="tags"} 8 {loop="tags"}
9 <span class="count">{$value.count}</span><a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}pt;">{$key|htmlspecialchars}</a> 9 <span class="count">{$value.count}</span><a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}pt;">{$key|htmlspecialchars}</a>
10 {/loop} 10 {/loop}
11 </div>
11</div> 12</div>
12</center>
13{include="page.footer"} 13{include="page.footer"}
14</body> 14</body>
15</html> 15</html>