diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-22 23:11:11 -0500 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-22 23:11:11 -0500 |
| commit | 2fc6aaf00f33a42a1ab8ef0cfaabeb2900cb9808 (patch) | |
| tree | b8528de09abd94ab1f564d3dd4a7b0fcb16cbbd5 /themes/hugo-xmin/layouts | |
| parent | 375a08ddd2c14de08ce4e6d52180300916d53524 (diff) | |
Diffstat (limited to 'themes/hugo-xmin/layouts')
| -rw-r--r-- | themes/hugo-xmin/layouts/_default/single.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/hugo-xmin/layouts/_default/single.html b/themes/hugo-xmin/layouts/_default/single.html index ecf1861..9529765 100644 --- a/themes/hugo-xmin/layouts/_default/single.html +++ b/themes/hugo-xmin/layouts/_default/single.html @@ -1,7 +1,7 @@ {{ partial "header.html" . }} <div class="article-meta"> -<h2 style="border-bottom: none;"><span class="title">{{ .Title | markdownify }}</span></h2> -{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} +<h1>{{ .Title | markdownify }}</h1> +{{ with .Params.author }}<p class="author">{{ . }}</p>{{ end }} {{ if (gt .Params.date 0) }}<p class="date">{{ .Date.Format "2006/01/02" }}</p>{{ end }} </div> |