TinyLifeWeb/web/_includes/devlogs.html

15 lines
682 B
HTML
Raw Normal View History

2022-01-23 15:58:04 +01:00
<div class="section">
2022-05-31 22:03:33 +02:00
<h1 id="devlogs">📝 Devlogs</h1>
2022-01-23 15:58:04 +01:00
<p>Along with every major update, we publish a devlog that features additional information as well as some screenshots. You can read them on itch or on Steam. You can also read <a href="https://docs.tinylifegame.com/Changelog">the full changelog</a>.</p>
<div class="devlogs">
{% for item in site.data.devlogs %}
<div class="devlog">
<h4>{{ item.name }}</h4>
<div class="devlog-buttons">
<a href="{{ item.itch }}">Read on itch</a> &ndash; <a href="{{ item.steam }}">Read on Steam</a>
</div>
</div>
{% endfor %}
</div>
</div>