summaryrefslogtreecommitdiff
path: root/clams-server/src/main/resources/templates/post.html
blob: 7899099fdb6d9c9420dcc9775ff0cbc90a64ba97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "templates/layout.html" %}

{% block content %}
<main class="main-container">
    <a href="/blog" class="back-link-top">&larr; back</a>
    <header class="post-header">
        <span class="post-date">{{ published_date }}</span>
        <span class="post-author">{{ author }}</span>
    </header>

    <h1>{{ title }}</h1>

    <article class="post-content">
        {{ content | raw }}
    </article>

    <nav class="post-nav">
        {{ back_to_index | raw }}
    </nav>
</main>
{% endblock %}