news.tatooine.club/index.html

27 lines
671 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 %}
<h3><a href="/{{topic}}/">{{topic | capitalize}}</a></h3>
<ul>
{% 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-08 13:24:09 +00:00
<details><summary>{{post.title | strip}}</summary>
2023-06-06 09:13:12 +00:00
<div class="details-content">{{post.content}}</div>
</details>
{% endunless %}
{%endif%}
{% endfor %}
</ul>
{% endfor %}
</div>