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

{% block content %}
<main class="main-container">
    <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 %}