about summary refs log tree commit diff stats
path: root/templates/post.html
blob: 7574a1f5ae305de5b66c06357bafc27070c8c67e (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en-GB">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title></title>
    <meta name="referrer" content="no-referrer-when-downgrade" />
    <link
      rel="alternate"
      type="application/atom+xml"
      title=""
      href="/atom.xml"
    />
    <link href="" rel="canonical" />
    <style></style>
  </head>
  <body>
    <a class="skip" href="#main">Skip to main content</a>
    <header>
      <h2>
        <a href="/" class="title"></a>
      </h2>
      <nav>
        <a href="/">Home</a>
      </nav>
    </header>
    <main id="main">
      <article class="h-entry">
        <h1 class="p-name">Post Title</h1>
        <p>
          <time class="dt-published">2000-12-31</time>
        </p>
        <div class="e-content">
          Enim lobortis scelerisque fermentum dui faucibus in ornare quam
          viverra. Eget egestas purus viverra accumsan in nisl nisi, scelerisque
          eu ultrices vitae, auctor eu augue ut lectus arcu, bibendum at.

          <code>/bin/test</code>

          <pre>
            <code class="language-conf">
foo=bar
            </code>
          </pre>

          <table>
            <thead>
              <tr>
                <th>One</th>
                <th>Two</th>
                <th>Three</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>1</td>
                <td>2</td>
                <td>3</td>
              </tr>
            </tbody>
          </table>
        </div>
        <div class="tags">
          Tags:
          <ul class="p-categories tags">
            <li><a class="p-category" href="/tags/sample/">#sample</a></li>
          </ul>
        </div>
      </article>
    </main>
    <footer>
      Content is
      <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"
        >CC BY 4.0</a
      >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is
      <a href="https://opensource.org/licenses/MIT">MIT</a>
    </footer>
  </body>
</html>