123456789101112131415161718 |
- {{ partial "header.html" . }}
- <main id="content" role="main">
- <article class="tagpage">
- <header>
- <h1 class="list-title">Archive</h1>
- </header>
- <ul class="postlist">
- {{ range .Data.Pages }}
- <li>
- <a class="listtitle" href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} #Draft{{ end }}</a>
- <span class="entry-meta"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></span>
- </li>
- {{ end }}
- </ul>
- </main>
- {{ partial "footer.html" . }}
|