25 lines
No EOL
631 B
HTML
25 lines
No EOL
631 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
|
|
{{ partial "nav.html" . }}
|
|
{{ partial "header_wp.html" . }}
|
|
|
|
<div class="container" role="main">
|
|
<article class="post-preview">
|
|
<div class="list-group col-lg-4 col-lg-offset-4 col-md-6 col-md-offset-3">
|
|
{{ range $key, $value := .Data.Terms.ByCount }}
|
|
<a href="/tags/{{ $value.Name | urlize }}" class="list-group-item">
|
|
{{ $value.Name }}<span class="badge">{{ $value.Count }}</span></a>
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</body>
|
|
</html> |