aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/picwall.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2014-12-12 17:01:02 +0100
committerArthurHoaro <arthur@hoa.ro>2015-01-08 10:15:05 +0100
commit8079dfd1cdec41a0bb3ee7ec2b974e8e64376d83 (patch)
tree124a22ed9b66193d2d42df8a5693878046848da5 /tpl/picwall.html
parent002f9625ec7d0f7673da1e7098fdea76487d0538 (diff)
downloadShaarli-8079dfd1cdec41a0bb3ee7ec2b974e8e64376d83.tar.gz
Shaarli-8079dfd1cdec41a0bb3ee7ec2b974e8e64376d83.tar.zst
Shaarli-8079dfd1cdec41a0bb3ee7ec2b974e8e64376d83.zip
W3C compliance (work on issue #64 - https://github.com/shaarli/Shaarli/issues/64):
* fix duplicate IDs - #paging_older, #paging_newer become classes as the paging is displayed twice (top, bottom) in the linklist * fix duplicate IDs - #paging_privatelinks and #paging_linksperpage become classes * daily links are now valid (use &amp) * name attribute is not used anymore on a tag in link list * center tag is replaced by CSS in picwall and tag cloud * action in form tag can't be empty, use # instead * fixed configure table with CSS instead of cellpadding, border, and valign * export links are now valid * remove "size" in input tag * Fix missing alt attributes for img elements * tpl/daily: Use HTML entities instead of char escape codes * tpl/export: fix missing </span> closing tag * Remove obsolete language attribute on <script> elements
Diffstat (limited to 'tpl/picwall.html')
-rw-r--r--tpl/picwall.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/tpl/picwall.html b/tpl/picwall.html
index b78e2609..bfaabf7e 100644
--- a/tpl/picwall.html
+++ b/tpl/picwall.html
@@ -9,15 +9,15 @@
9</head> 9</head>
10<body> 10<body>
11<div id="pageheader">{include="page.header"}</div> 11<div id="pageheader">{include="page.header"}</div>
12<center> 12<div class="center">
13<div class="picwall_container"> 13 <div id="picwall_container">
14 {loop="linksToDisplay"} 14 {loop="linksToDisplay"}
15 <div class="picwall_pictureframe"> 15 <div class="picwall_pictureframe">
16 {$value.thumbnail}<a href="{$value.permalink}"><span class="info">{$value.title|htmlspecialchars}</span></a> 16 {$value.thumbnail}<a href="{$value.permalink}"><span class="info">{$value.title|htmlspecialchars}</span></a>
17 </div> 17 </div>
18 {/loop} 18 {/loop}
19 </div>
19</div> 20</div>
20</center>
21{include="page.footer"} 21{include="page.footer"}
22 22
23{if="empty($GLOBALS['disablejquery'])"} 23{if="empty($GLOBALS['disablejquery'])"}