list.html 701 B

123456789101112131415161718192021
  1. {{ define "main" }}
  2. <div class="td-content">
  3. <h1>{{ .Title }}</h1>
  4. {{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
  5. <header class="article-meta">
  6. {{ partial "taxonomy_terms_article_wrapper.html" . -}}
  7. {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}}
  8. {{ partial "reading-time.html" . -}}
  9. {{ end -}}
  10. </header>
  11. {{ .Render "_td-content-after-header" -}}
  12. {{ .Content }}
  13. {{ partial "section-index.html" . -}}
  14. {{ partial "feedback.html" . -}}
  15. {{ if (.Site.Config.Services.Disqus.Shortname) -}}
  16. <br />
  17. {{- partial "disqus-comment.html" . -}}
  18. {{ end -}}
  19. {{ partial "page-meta-lastmod.html" . -}}
  20. </div>
  21. {{ end -}}