website/_layouts/blog.liquid

34 lines
743 B
Plaintext

<!DOCTYPE html>
<html lang="en-US">
<head>
{% include "meta.liquid" %}
</head>
<body>
{% include "navigation.liquid" %}
<div class="section">
<div class="inner-section">
<main>
{{ page.content }}
{% for post in collections.posts.pages %}
<article>
<h3>
<span><a href="/{{post.permalink}}">🔗</a></span>
{{ post.title }}
<span><code class="date">{{post.published_date}}</code></span>
</h3>
<p>{{post.description}}</p>
<p class="tags"><b>Tags: </b><i>
{% for category in post.categories %}
{{category}},
{% endfor %}
</i></p>
</article>
{% endfor %}
</main>
</div>
</div>
{% include "footer.liquid" %}
</body>
</html>