| 12345678910111213141516171819 | 
							- {{ partial "header.html" . }}
 
- <main id="content" role="main">
 
- <article class="tagpage">
 
- 	<header>
 
- 		<h1 class="list-title">Posts about {{ .Title }}</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>
 
- </article>
 
- </main>
 
- {{ partial "footer.html" . }}
 
 
  |