news.tatooine.club/index.html

25 lines
667 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>
<p class="topic-date">{{site.time | date: "%A, %b, %e, %Y"}}</p>
{% for topic in site.topics %}
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 %}
{% if post.topics and post.days_ago < 2 and post.topics.first == topic %}
{% unless post.sources contains "PTI" %}
2023-06-09 08:11:10 +00:00
<details><summary><h3>{{post.title | strip}}</h3></summary>
2023-06-06 09:13:12 +00:00
<div class="details-content">{{post.content}}</div>
</details>
{% endunless %}
{%endif%}
{% endfor %}
{% endfor %}
</div>