single.html (830B)
1 {{ define "content" }} 2 <main class="main"> 3 <article class="h-entry"> 4 <header> 5 <h1 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h1> 6 <p> 7 Published by <a class="p-author" href="/about">{{ $.Param "author" }}</a> 8 on <time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time> 9 </p> 10 {{ with .Params.tags }} 11 <nav class="tags"> 12 Tags: 13 <ul> 14 {{ range . }} 15 <li><a href="{{ `tags/` | absURL }}{{ . | urlize }}" rel="tag">{{ . }}</a></li> 16 {{ end }} 17 </ul> 18 </nav> 19 {{ end }} 20 </header> 21 22 <div class="e-content"> 23 {{ .Content }} 24 </div> 25 </article> 26 </main> 27 {{ end }} 28