aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/single.html
blob: 96bb02cd963a33943240810e8261ebc8111c0c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
<main>
  <article>
    <h1>{{ .Title | markdownify }}</h1>
    {{- partial "article-table-contents.html" . -}}
    {{- partial "article-meta-top.html" . -}}
    {{- partial "function-content.html" .Content | safeHTML -}}
  </article>

  {{- partial "article-meta-bottom.html"  . -}}
  {{- partial "article-more-content.html" . -}}
  {{- if fileExists "themes/tdro/layouts/partials/openring.html" -}}
  {{- partial "article-on-web.html"       . -}}
  {{- end -}}
  {{- partial "article-syntax.html"       . -}}
  {{- partial "article-comments.html"     . -}}
</main>
{{ end }}