Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « tag « layouts - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d84d28658d95ffcb9c5dc81ddacd13ef7fad1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}

<div class = "row">
  <div class = "col-md-12">
    <h1>Tag: {{ .Title }}</h1>
  </div>
</div>
{{ with .Content }}
<div class = "row">
  <div class = "col">
    {{ . }}
  </div>
</div>
{{- end -}}

{{ partial "taxonomy-episodes.html" . }}

{{ end }}