2017-01-14 15:52:17 +01:00
|
|
|
<!DOCTYPE html>
|
2019-02-09 14:29:35 +01:00
|
|
|
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
|
2017-01-14 15:52:17 +01:00
|
|
|
<head>
|
|
|
|
{include="includes"}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{include="page.header"}
|
|
|
|
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-lg-1-6 pure-u-1-24"></div>
|
|
|
|
<div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor" id="daily">
|
|
|
|
<h2 class="window-title">
|
|
|
|
{'The Daily Shaarli'|t}
|
|
|
|
<a href="?do=dailyrss" title="{'1 RSS entry per day'|t}"><i class="fa fa-rss"></i></a>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div id="plugin_zone_start_daily" class="plugin_zone">
|
|
|
|
{loop="$plugin_start_zone"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="daily-about">
|
|
|
|
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-lg-1-3 pure-u-1 center">
|
|
|
|
{if="$previousday"}
|
|
|
|
<a href="?do=daily&day={$previousday}">
|
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
{'Previous day'|t}
|
|
|
|
</a>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
<div class="daily-desc pure-u-lg-1-3 pure-u-1 center">
|
|
|
|
{'All links of one day in a single page.'|t}
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-lg-1-3 pure-u-1 center">
|
|
|
|
{if="$nextday"}
|
|
|
|
<a href="?do=daily&day={$nextday}">
|
|
|
|
{'Next day'|t}
|
|
|
|
<i class="fa fa-arrow-right"></i>
|
|
|
|
</a>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
2017-03-28 20:40:14 +02:00
|
|
|
<h3 class="window-subtitle">{function="format_date($dayDate, false)"}</h3>
|
2017-01-14 15:52:17 +01:00
|
|
|
|
|
|
|
<div id="plugin_zone_about_daily" class="plugin_zone">
|
|
|
|
{loop="$daily_about_plugin"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{if="$linksToDisplay"}
|
|
|
|
<div class="pure-g">
|
|
|
|
{loop="$cols"}
|
|
|
|
{if="isset($value[0])"}
|
|
|
|
<div class="pure-u-lg-1-3 pure-u-1">
|
|
|
|
{loop="value"}
|
|
|
|
{$link=$value}
|
|
|
|
<div class="daily-entry">
|
|
|
|
<div class="daily-entry-title center">
|
|
|
|
<a href="?{$link.shorturl}" title="{'Permalink'|t}">
|
|
|
|
<i class="fa fa-link"></i>
|
|
|
|
</a>
|
|
|
|
<a href="{$link.real_url}">{$link.title}</a>
|
|
|
|
</div>
|
2018-07-29 17:40:05 +02:00
|
|
|
{if="$thumbnails_enabled && !empty($link.thumbnail)"}
|
|
|
|
<div class="daily-entry-thumbnail">
|
|
|
|
<img data-src="{$link.thumbnail}#" class="b-lazy"
|
2018-08-14 11:43:54 +02:00
|
|
|
src=""
|
2018-07-29 17:40:05 +02:00
|
|
|
alt="thumbnail" width="{$thumbnails_width}" height="{$thumbnails_height}" />
|
|
|
|
</div>
|
2017-01-14 15:52:17 +01:00
|
|
|
{/if}
|
|
|
|
<div class="daily-entry-description">{$link.formatedDescription}</div>
|
|
|
|
{if="$link.tags"}
|
|
|
|
<div class="daily-entry-tags center">
|
|
|
|
{loop="link.taglist"}
|
|
|
|
<span class="label label-tag" title="Add tag">
|
|
|
|
{$value}
|
|
|
|
</span>
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
{/if}
|
2018-07-29 17:40:05 +02:00
|
|
|
<div class="dailyEntryFooter clear">
|
2017-01-14 15:52:17 +01:00
|
|
|
{loop="$link.link_plugin"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
{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>
|
|
|
|
</div>
|
|
|
|
{include="page.footer"}
|
2018-07-29 17:40:05 +02:00
|
|
|
<script src="js/thumbnails.min.js?v={$version_hash}"></script>
|
2017-01-14 15:52:17 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|