TinyLifeWeb/web/_includes/devlogs.html
2023-02-10 19:28:34 +01:00

15 lines
879 B
HTML

<div class="section">
<h1 id="devlogs">📝 Devlogs</h1>
<p>Along with every major update, we publish a devlog that features additional information as well as some screenshots. Occasionally, we also publish devlogs about the game's development or other news. You can read them on itch or on Steam. You can also read <a href="https://docs.tinylifegame.com/Changelog">the full changelog</a> or subscribe to <a href="#subscribe">the mailing list</a>.</p>
<div class="devlogs">
{%- for item in site.data.devlogs -%}
<div class="devlog">
<h4 class="devlog-title">{{ item.name }}</h4>
<div class="devlog-date text-muted">{{ item.date }}</div>
<div><a href="{{ item.itch }}">Read on itch</a> &ndash; <a href="{{ item.steam }}">Read on Steam</a></div>
</div>
{%- endfor -%}
</div>
</div>