mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
29cf87444f
Avoiding issues with tag leakage when using .Summary See issue #14044 for details.
11 lines
220 B
HTML
11 lines
220 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{ range .Pages }}
|
|
<section>
|
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
{{ .Summary }}
|
|
</section>
|
|
{{ end }}
|
|
{{ end }}
|