mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-17 17:23:12 +01:00
add emoji to blog categories
This commit is contained in:
parent
618edc6add
commit
fdfbec2f52
2 changed files with 4 additions and 1 deletions
|
@ -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 %}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue