aboutsummaryrefslogtreecommitdiffstats
path: root/templates/show_post.html
blob: 5a7d80630eb7457c96ef72c8b67ff294338538b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <head>
    <title>{{ post.title }}</title>
  </head>
  <body>
    <article class="post-teaser">
      <header>
        <h1>{{ post.title }}</h1>
        <div class="post-actions">
          Edit | Publish | Delete
        </div>
      </header>
      <section class="teaser">
        {{ post.body }}
      </section>
    </article>
  </body>
</html>