19 lines
275 B
HTML
19 lines
275 B
HTML
|
{{ define "main" }}
|
||
|
|
||
|
<div class = "row">
|
||
|
<div class = "col-md-12">
|
||
|
<h1>Series: {{ .Title }}</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ with .Content }}
|
||
|
<div class = "row">
|
||
|
<div class = "col">
|
||
|
{{ . }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{- end -}}
|
||
|
|
||
|
{{ partial "taxonomy-episodes.html" . }}
|
||
|
|
||
|
{{ end }}
|