news.tatooine.club/index.html

21 lines
615 B
HTML
Raw Normal View History

2023-06-06 09:13:12 +00:00
---
title: "Beatroot News: Text-only"
layout: default
---
<p></p>
<div class="topic-container">
<h1 class="topic-heading">{{page.title}}</h1>
<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-06-06 09:13:12 +00:00
{% for topic in site.topics %}
2023-06-14 05:34:22 +00:00
<div class="topic-{{topic|downcase}}">
2023-06-09 08:11:10 +00:00
<h2><a href="/{{topic}}/">{{topic | capitalize}}</a></h2>
2023-06-06 09:13:12 +00:00
{% for post in site.pages %}
2023-06-12 09:14:43 +00:00
{% if post.topics and post.topics.first == topic %}
2023-06-26 10:05:00 +00:00
{% include_cached story.html story=post heading_level=3%}
2023-06-06 09:13:12 +00:00
{%endif%}
{% endfor %}
2023-06-14 05:34:22 +00:00
</div>
2023-06-06 09:13:12 +00:00
{% endfor %}
</div>