news.tatooine.club/_layouts/topic.html

25 lines
764 B
HTML
Raw Normal View History

2023-06-06 09:13:12 +00:00
---
layout: default
---
<p class="slug-line">
<a class="slug-link" href="/">Beatroot</a> &gt; {{page.title | capitalize}}
</p>
<div class="topic-container">
2023-06-08 13:24:09 +00:00
<h1 class="topic-heading">{{page.title | capitalize | strip}}</h1>
2023-06-06 09:13:12 +00:00
<div class="hr-line"></div>
2023-06-09 08:40:34 +00:00
<p class="topic-date"><time datetime="{{site.time | date: '%y-%m-%d'}}">{{site.time | date: "%A, %b, %e, %Y"}}</time></p>
2023-11-30 02:36:31 +00:00
{% assign post_count = 1 %}
2023-06-06 09:13:12 +00:00
{% for post in site.pages %}
2023-06-26 10:05:00 +00:00
{% if post.topics and post.topics contains page.topic %}
{% include_cached story.html story=post heading_level="2" %}
2023-11-30 02:36:31 +00:00
{% assign post_count = post_count | plus: 1 %}
2023-06-26 10:05:00 +00:00
{% endif %}
2023-06-06 09:13:12 +00:00
{% endfor %}
2023-06-09 08:40:34 +00:00
2023-11-30 02:36:31 +00:00
{% if post_count == 1 %}
<p class="topic-empty">No articles today under {{page.title}}</p>
{% endif %}
2023-06-09 15:31:38 +00:00
</div> <!-- topic-container -->