summaryrefslogtreecommitdiffstats
path: root/templates/post.html
blob: 77986aee88b61b29e0724d23ea83152959ed05f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<main role="main">
  <article>
    $if(thumbnail)$
    <div class="thumbnail" style="height: 30vh;">$thumbnail$</div>
    $endif$
    <div class="panel">
      <section class="header">
        <div class="title">
          <h1>$title$</h1>
          <a href="https://infoculture.pub$url$">permalink</a>
          <a href="/$path$">raw</a>
        </div>
        <div class="meta">
          $if(author)$
          <h2 class="author">$author$</h2>
          $endif$
          <h3 class="date">$date$</h3>
          $if(tags)$
          <h3 class="tags">$tags$</h3>
          $endif$
        </div>
      </section>
      <br>
      <br>
      <section>
        $body$
      </section>
    </div>
  </article>
</main>