about summary refs log tree commit diff stats
path: root/templates/list.html
blob: 77415bad1d1807c2a41953390d9fc114fe47bc26 (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
<!doctype html>
<html lang="en-GB">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Site Title</title>
    <meta name="referrer" content="no-referrer-when-downgrade" />
    <link
      rel="alternate"
      type="application/atom+xml"
      title="Site Title"
      href="/atom.xml"
    />
    <style></style>
  </head>
  <body>
    <a class="skip" href="#content">Skip to main content</a>
    <header>
      <h2>
        <a href="/" class="title">Site Title</a>
      </h2>
      <nav>
        <a href="/">Home</a>
      </nav>
    </header>
    <main id="content">
      <div class="filter">
        <h3 class="filter">Tag</h3>
        <small>
          <a href="../">Remove filter</a>
        </small>
      </div>
      <ul class="h-feed">
        <li class="h-entry">
          <span>
            <time
              class="dt-published"
              datetime="2000-12-31T12:33:02+02:00"
              pubdate
            >
              2000-12-31
            </time>
          </span>
          <a class="p-name u-url" href="/post/lorem-ipsum/">Lorem Ipsum</a>
        </li>
      </ul>
    </main>
    <footer>
      Licensed under a
      <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"
        >Creative Commons Attribution 4.0 International License</a
      >.
    </footer>
  </body>
</html>