website/_layouts/blog.liquid

35 lines
972 B
Plaintext

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<link rel="alternate" title="Main RSS Feed" type="application/rss+xml" href="/rss.xml">
<link rel="icon" href="/assets/logo.svg">
<title>{{ page.title }}</title>
</head>
<body>
{% include "navigation.liquid" %}
<div class="section">
<div class="inner-section">
{{ page.content }}
{% for post in collections.posts.pages %}
<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>
{% endfor %}
</div>
</div>
{% include "footer.liquid" %}
</body>
</html>