29 lines
808 B
Cheetah
29 lines
808 B
Cheetah
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include 'meta.tmpl' %}
|
|
</head>
|
|
<body>
|
|
{% include 'header.tmpl' %}
|
|
|
|
<main class="post-grid">
|
|
{% for post in posts %}
|
|
<article class="post-tile">
|
|
<a href="{{ post.url }}" class="tile-link">
|
|
<div class="tile-content">
|
|
<div class="post-meta">{{ post.date }}</div>
|
|
<h2 class="post-title">{{ post.title }}</h2>
|
|
{% if post.type == 'short' and post.content %}
|
|
<div class="post-excerpt">
|
|
{{ post.content | safe }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</a>
|
|
</article>
|
|
{% endfor %}
|
|
</main>
|
|
|
|
{% include 'footer.tmpl' %}
|
|
</body>
|
|
</html>
|