mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-05 20:39:10 +01:00
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
<div class="devlogs">
|
|
<h2 class="devlog-category" id="{{ include.tag | slugify }}">{{ include.tag }}</h2>
|
|
<p>{{ include.description }}</p>
|
|
|
|
{% for post in site.posts %}
|
|
{% if post.tags contains include.tag %}
|
|
<div class="devlog">
|
|
{% 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 %}
|
|
<div class="devlog-image">
|
|
<img src="{{ url }}" width="100%" alt="Cover image for post {{ post.title }}">
|
|
</div>
|
|
{% endif %}
|
|
<h4 class="devlog-title">{{ post.title }}</h4>
|
|
<div class="text-muted">{{ post.date | date_to_string }}</div>
|
|
<div>
|
|
<a href="{{ post.url }}">Read this post</a> –
|
|
<a href="{{ post.itch }}">Read on itch</a> –
|
|
<a href="{{ post.steam }}">Read on Steam</a>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|