content-blog.html 613 B

1234567891011121314
  1. {{ $break := cond .DoPageBreak "page-break-before: always" "" }}
  2. {{ with .Page }}
  3. <div class="td-content" style="{{ $break }}">
  4. <h1 id="pg-{{ .Page.File.UniqueID }}">{{ .Title }}</h1>
  5. {{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
  6. <div class="td-byline mb-4">
  7. {{ with .Params.author }}{{ T "post_byline_by" }} <b>{{ . | markdownify }}</b> |{{ end}}
  8. {{if .Date }}
  9. <time datetime="{{ .Date.Format "2006-01-02" }}" class="text-body-secondary">{{ .Date.Format .Site.Params.time_format_blog }}</time>
  10. {{ end }}
  11. </div>
  12. {{ .Content }}
  13. </div>
  14. {{ end }}