aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/single.html
blob: 1d98d73e97bf4c4b75155f0e6343e9bf327f09f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ 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-syntax.html"       . -}}
  {{- partial "article-meta-bottom.html"  . -}}
  {{- partial "article-more-content.html" . -}}
  {{- partial "article-on-web.html"       . -}}
  {{- partial "article-comments.html"     . -}}
  {{- partial "article-references.html"   . -}}
</main>
{{ end }}