news.tatooine.club/_layouts/topic.html

28 lines
834 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-06-06 09:13:12 +00:00
{% for post in site.pages %}
{% if post.topics contains page.topic %}
2023-06-09 16:21:43 +00:00
<details data-hash="{{post.id}}-{{post.date | date: '%s'}}">
2023-06-09 15:31:38 +00:00
<summary>
<h2>{{post.title | strip}} </h2>
<a class="topic-title" href="{{post.url}}">🔗</a>
{% if post.sources contains "PTI" %}
<span title="Syndicated News">📡</span>
{%endif%}
</summary>
<div class="details-content">{{post.content}}</div>
</details>
2023-06-06 09:13:12 +00:00
{%endif%}
{% endfor %}
2023-06-09 08:40:34 +00:00
2023-06-09 15:31:38 +00:00
</div> <!-- topic-container -->