Files
archetypes
assets
content
static
themes
hugo-theme-ipng
archetypes
assets
data
layouts
_default
archives.html
baseof.html
list.html
rss.xml
single.html
partials
shortcodes
taxonomy
404.html
home.html
static
LICENSE.md
README.md
theme.toml
.drone.yml
.gitattributes
.gitignore
hugo.yaml
mkgallery.sh
sabbatical.ipng.nl/themes/hugo-theme-ipng/layouts/_default/single.html
2024-08-13 02:25:52 +02:00

24 lines
732 B
HTML

{{- define "main" }}
<main>
<article>
{{- if in site.Params.mainSections .Page.Section }}
<h1 class="page-title blog">{{ .Title }}</h1>
{{- else }}
<h1 class="page-title">{{ .Title }}</h1>
{{- end }}
{{- /* Show post information if it's a post, otherwise just the content */ -}}
{{- if in site.Params.mainSections .Page.Section }}
<p class="blog-post-info">Posted: <time>{{- .Date.Format "2006-01-02" -}}</time>
{{- partial "blog-taxonomy-info" . }}
</p>
<div class="blog-post-content">
{{ .Content }}
</div>
{{- template "_internal/disqus.html" . }}
{{- else }}
{{- .Content }}
{{- end }}
</article>
</main>
{{- end }}