8079dfd1cd
* 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 &) * 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
31 lines
No EOL
812 B
HTML
31 lines
No EOL
812 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>{include="includes"}
|
|
{if="empty($GLOBALS['disablejquery'])"}
|
|
<script src="inc/jquery.min.js#"></script>
|
|
<script src="inc/jquery-ui.min.js#"></script>
|
|
<script src="inc/jquery.lazyload.min.js#"></script>
|
|
{/if}
|
|
</head>
|
|
<body>
|
|
<div id="pageheader">{include="page.header"}</div>
|
|
<div class="center">
|
|
<div id="picwall_container">
|
|
{loop="linksToDisplay"}
|
|
<div class="picwall_pictureframe">
|
|
{$value.thumbnail}<a href="{$value.permalink}"><span class="info">{$value.title|htmlspecialchars}</span></a>
|
|
</div>
|
|
{/loop}
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
|
|
{if="empty($GLOBALS['disablejquery'])"}
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("img.lazyimage").show().lazyload();
|
|
});
|
|
</script>
|
|
{/if}
|
|
</body>
|
|
</html> |