2024-05-21 15:22:31 +02:00
|
|
|
<div class="devlogs">
|
2024-05-21 18:20:14 +02:00
|
|
|
<h2 class="devlog-category" id="{{ include.tag | slugify }}">{{ include.emoji }} {{ include.tag }}</h2>
|
2024-05-21 15:22:31 +02:00
|
|
|
<p>{{ include.description }}</p>
|
|
|
|
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- for post in site.posts -%}
|
|
|
|
{%- if post.tags contains include.tag -%}
|
2024-05-21 15:22:31 +02:00
|
|
|
<div class="devlog">
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- if post.image -%}
|
|
|
|
{%- assign start = post.image | slice: 0, 4 -%}
|
|
|
|
{%- if start == "http" -%}
|
|
|
|
{%- assign url = post.image -%}
|
|
|
|
{%- else -%}
|
|
|
|
{%- assign url = post.url | append: post.image -%}
|
|
|
|
{%- endif -%}
|
2024-05-21 16:31:30 +02:00
|
|
|
<img src="{{ url }}" class="devlog-image" width="100%" height="120px" alt="Cover image for post {{ post.title }}">
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- endif -%}
|
2024-05-21 15:22:31 +02:00
|
|
|
<h4 class="devlog-title">{{ post.title }}</h4>
|
2024-05-21 15:56:58 +02:00
|
|
|
<div class="text-muted">{{ post.date | date_to_string }}</div>
|
2024-05-21 15:22:31 +02:00
|
|
|
<div>
|
2024-05-21 18:15:21 +02:00
|
|
|
<a href="{{ post.url }}">Read this post</a>
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- if post.itch -%}
|
2024-05-21 18:15:21 +02:00
|
|
|
– <a href="{{ post.itch }}">Read on itch</a>
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- endif -%}
|
|
|
|
{%- if post.steam -%}
|
2024-05-21 18:15:21 +02:00
|
|
|
– <a href="{{ post.steam }}">Read on Steam</a>
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- endif -%}
|
2024-05-21 15:56:58 +02:00
|
|
|
</div>
|
2024-05-21 15:22:31 +02:00
|
|
|
</div>
|
2024-05-21 21:03:41 +02:00
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
2024-05-21 15:22:31 +02:00
|
|
|
</div>
|