templates/days.mustache
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!DOCTYPE html>
<html lang="en">
{{> _head}}
<body id="top">
<div class="main">
<div class="header" role="navigation">
{{> _header}}
</div>
<div class="main-content days" role="main">
<div class="{{content-type}} box content">
{{> _page_header}}
<div id="body-text" class="hyphenate">
<p>This page is my daily photo stream, inspired by
<a href="https://rabbits.srht.site/days/" target="_blank">Hundred Rabbits's /days page</a>
and <a href="https://img.corvid.cafe" target="_blank">img.corvid.cafe</a>.</p>
<p>It contains <em>at most</em> one image per day.</p>
{{#days}}
<h3 id="{{date}}"><div title="{{date}}" class="date">{{title}}</div></h3>
{{#image}}
<div class="figure">
<img src="{{image}}" alt="{{date}}" loading="lazy" />
{{#text}}
<div class="figcaption">
<div class="caption">{{text}}</div>
</div>
{{/text}}
</div>
{{/image}}
{{/days}}
</div>
</div>
</div>
<div class="footer" role="contentinfo">
{{> _footer}}
</div>
</div>
</body>
</html>
|