44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
{% set pageTitle = 'Tildes Issue Log' %}
|
|
{% set toRoot = '.' %}
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block body %}
|
|
<main id="main">
|
|
<section id="newest-post">
|
|
<h2>
|
|
Newest Post:
|
|
<a href="{{ newestPost.url }}">
|
|
{{ months[newestPost.month]|capitalize }} {{ newestPost.year }}
|
|
</a>
|
|
</h2>
|
|
<a href="{{ toRoot }}/posts.html">Click here to view all posts</a>.
|
|
</section>
|
|
<section id="about">
|
|
<h2>About</h2>
|
|
<p>The Tildes Issue Log is a monthly blog about the development of <a href="https://tildes.net">Tildes</a>. Each month highlighting any new features, bug fixes and occasional community-related events.</p>
|
|
<p></p>
|
|
</section>
|
|
<section id="feeds">
|
|
<h2>Feeds</h2>
|
|
<p>Want to stay up to date in your own way? That's possible! You can subscribe to any of the feeds or the mailing list below and you'll get all the highlights right where you like 'em.</p>
|
|
<ul>
|
|
<li>
|
|
<a href="{{ toRoot }}/feed.atom">Atom</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ toRoot }}/feed.json">JSON Feed</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ toRoot }}/feed.rss">RSS</a>
|
|
</li>
|
|
<li>
|
|
<a href="mailto:~bauke/tildes-issue-log+subscribe@lists.sr.ht">Subscribe to the mailing list</a>
|
|
or
|
|
<a href="https://lists.sr.ht/~bauke/tildes-issue-log">view the archives</a>.
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|