content.html 539 B

12345678910111213
  1. {{ $tpl := printf "print/content-%s.html" .Page.Type }}
  2. {{ if templates.Exists (printf "_partials/%s" $tpl) }}
  3. {{ partial $tpl . }}
  4. {{ else -}}
  5. {{ $break := cond .DoPageBreak "page-break-before: always" "" -}}
  6. <div class="td-content" style="{{ $break }}">
  7. {{ $break := cond .DoPageBreak "page-break-before: always" "" }}
  8. <h1 id="pg-{{ .Page.File.UniqueID }}">{{ .PageNum }} - {{ .Page.Title }}</h1>
  9. {{ with .Page.Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
  10. {{ .Page.Content }}
  11. </div>
  12. {{ end }}