pollux.codes

Files for the pollux.codes site
git clone git://pollux.codes/git/pollux.codes.git
Log | Files | Refs

list.html (403B)


      1 {{ define "main" }}
      2 {{ .Content }}
      3 <hr>
      4 {{ with .Site.Taxonomies.blogtags.ByCount }}
      5 {{ range $k, $term := . }}{{ if $k }}, {{ end }}<a href="{{ "/blog/tags/" | relLangURL}}{{ .Name | urlize }}">{{ .Name }} ({{ len .WeightedPages }})</a>{{ end }}
      6 {{ end }}
      7 <hr>
      8 <ul>
      9 {{ range .Pages }}
     10 <li>
     11 	{{ .Date.Format "2006-01-02" }} <a href="{{ .RelPermalink }}">{{ .Title }}</a>
     12 </li>
     13 {{ end }}
     14 </ul>
     15 {{ end }}