818b3193ff
With the new routes, all pages are not all at the same folder level anymore (e.g. /shaare and /shaare/123), so we can't just use './' everywhere. The most consistent way to handle this is to prefix all path with the proper variable, and handle the actual path in controllers.
109 lines
4.2 KiB
HTML
109 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>{include="includes"}</head>
|
|
<body>
|
|
<div id="pageheader">
|
|
{include="page.header"}
|
|
</div>
|
|
<div class="daily">
|
|
<div id="plugin_zone_start_picwall" class="plugin_zone">
|
|
{loop="$plugin_start_zone"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
|
|
<div class="dailyAbout">
|
|
All links of one day<br>in a single page.<br>
|
|
{if="$previousday"} <a href="{$base_path}/daily&day={$previousday}"><b><</b>Previous day</a>{else}<b><</b>Previous day{/if}
|
|
-
|
|
{if="$nextday"}<a href="{$base_path}/daily&day={$nextday}">Next day<b>></b></a>{else}Next day<b>></b>{/if}
|
|
<br>
|
|
|
|
{loop="$daily_about_plugin"}
|
|
{$value}
|
|
{/loop}
|
|
|
|
<br>
|
|
<a href="{$base_path}/daily-rss" title="1 RSS entry per day"><img src="{$asset_path}/img/feed-icon-14x14.png#" alt="rss_feed">Daily RSS Feed</a>
|
|
</div>
|
|
|
|
<div class="dailyTitle">
|
|
<img src="{$asset_path}/img/floral_left.png#" width="51" height="50" class="nomobile" alt="floral_left">
|
|
The Daily Shaarli
|
|
<img src="{$asset_path}/img/floral_right.png#" width="51" height="50" class="nomobile" alt="floral_right">
|
|
</div>
|
|
|
|
<div class="dailyDate">
|
|
<span class="nomobile">———————————</span>
|
|
{if="!empty($dayDesc)"}
|
|
{$dayDesc} -
|
|
{/if}
|
|
{function="strftime('%A %d, %B %Y', $day)"}
|
|
<span class="nomobile">———————————</span>
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
{if="$linksToDisplay"}
|
|
{loop="$cols"}
|
|
{if="isset($value[0])"}
|
|
<div id="daily_col{$counter+1}">
|
|
{loop="$value"}
|
|
{$link=$value}
|
|
<div class="dailyEntry">
|
|
<div class="dailyEntryPermalink">
|
|
<a href="{$base_path}/?{$value.shorturl}">
|
|
<img src="{$asset_path}/img/squiggle.png#" width="25" height="26" title="permalink" alt="permalink">
|
|
</a>
|
|
</div>
|
|
{if="!$hide_timestamps || $is_logged_in"}
|
|
<div class="dailyEntryLinkdate">
|
|
<a href="{$base_path}/?{$value.shorturl}">{function="strftime('%c', $link.timestamp)"}</a>
|
|
</div>
|
|
{/if}
|
|
{if="$link.tags"}
|
|
<div class="dailyEntryTags">
|
|
{loop="$link.taglist"}
|
|
{$value} -
|
|
{/loop}
|
|
</div>
|
|
{/if}
|
|
<div class="dailyEntryTitle">
|
|
<a href="{$link.real_url}">{$link.title}</a>
|
|
</div>
|
|
{if="$thumbnails_enabled && !empty($link.thumbnail)"}
|
|
<div class="dailyEntryThumbnail">
|
|
<img data-src="{$link.thumbnail}#" class="b-lazy"
|
|
src=""
|
|
alt="thumbnail" width="{$thumbnails_width}" height="{$thumbnails_height}" />
|
|
</div>
|
|
{/if}
|
|
<div class="dailyEntryDescription">{$link.formatedDescription}</div>
|
|
|
|
<div class="dailyEntryFooter">
|
|
{loop="$link.link_plugin"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
</div>
|
|
{/loop}
|
|
</div>
|
|
{/if}
|
|
{/loop}
|
|
{else}
|
|
<div class="dailyNoEntry">No articles on this day.</div>
|
|
{/if}
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div id="plugin_zone_end_picwall" class="plugin_zone">
|
|
{loop="$plugin_end_zone"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
<div id="closing"><img src="{$asset_path}/img/squiggle_closing.png#" width="66" height="61" alt="-"></div>
|
|
</div>
|
|
{include="page.footer"}
|
|
<script src="{$asset_path}/js/thumbnails.min.js?v={$version_hash}#"></script>
|
|
</body>
|
|
</html>
|