27 lines
522 B
HTML
27 lines
522 B
HTML
|
{{ define "header" }}
|
||
|
{{ partial "header.html" . }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "main" }}
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
|
||
|
{{ .Content }}
|
||
|
|
||
|
{{ $paginator := .Paginator 100 }}
|
||
|
{{ template "_internal/pagination.html" . }}
|
||
|
|
||
|
<ul class=tweets>
|
||
|
{{ range $paginator.Pages }}
|
||
|
{{- if or (not .Draft) (not hugo.IsProduction) -}}
|
||
|
{{- .Render "li_grid_with_date" -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
</ul>
|
||
|
|
||
|
{{ template "_internal/pagination.html" . }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "footer" }}
|
||
|
{{ partial "footer.html" . }}
|
||
|
{{ end }}
|