add emoji to blog categories

This commit is contained in:
Ell 2024-05-21 18:20:14 +02:00
parent 618edc6add
commit fdfbec2f52
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,5 @@
<div class="devlogs">
<h2 class="devlog-category" id="{{ include.tag | slugify }}">{{ include.tag }}</h2>
<h2 class="devlog-category" id="{{ include.tag | slugify }}">{{ include.emoji }} {{ include.tag }}</h2>
<p>{{ include.description }}</p>
{% for post in site.posts %}

View file

@ -4,11 +4,14 @@
{% include devlog_category.html
tag="Community Showcase"
emoji="🌍"
description="We want to dedicate this section to our community and showcase some of the awesome stuff you've created. Be it in-game content, videos, or fan art, this category is dedicated to your creations." %}
{% include devlog_category.html
tag="Tiny Technicalities"
emoji="⚙️"
description="Tiny Technicalities gives you a little look behind the scenes of Tiny Life development, including explanations about the graphics, music, AI, build mode, and more!" %}
{% include devlog_category.html
tag="Devlogs"
emoji="📰"
description="Along with every major update, we publish a devlog that features additional information as well as some screenshots. You can also read <a href=\"https://docs.tinylifegame.com/Changelog\">the full changelog</a>." %}
</div>