2023-06-09 21:55:04 -07:00
|
|
|
{{#if tag}}
|
2023-11-12 19:54:54 -08:00
|
|
|
<h1>blog posts tagged {{tag}}</h1>
|
2023-06-09 21:55:04 -07:00
|
|
|
<p><a href="/blog/">View all blog posts</a></p>
|
|
|
|
{{else}}
|
2023-11-12 19:54:54 -08:00
|
|
|
<h1>blog Posts</h1>
|
|
|
|
<p><a href="tags">view blog tags</a></p>
|
|
|
|
<p><a href="rss.xml">rss feed</a></p>
|
2023-06-09 21:55:04 -07:00
|
|
|
{{/if}}
|
|
|
|
<h1>Page {{page}}/{{page_max}}</h1>
|
|
|
|
{{#if previous}}
|
2023-11-12 19:54:54 -08:00
|
|
|
<a href="./{{previous}}">previous page</a>
|
2023-06-09 21:55:04 -07:00
|
|
|
{{/if}}
|
|
|
|
{{#if next}}
|
2023-11-12 19:54:54 -08:00
|
|
|
<a href="./{{next}}">next page</a>
|
2023-06-09 21:55:04 -07:00
|
|
|
{{/if}}
|
|
|
|
<div class="blog-post-list">
|
|
|
|
{{#each resources}}
|
|
|
|
<div class="post">
|
|
|
|
<p class="title"><a href="/blog/{{id}}">{{title}}</a></p>
|
|
|
|
<p class="short-desc">{{desc}}</p>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|