Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Betz <zwbetz@gmail.com>2019-02-26 06:17:02 +0300
committerZachary Betz <zwbetz@gmail.com>2019-02-26 06:17:02 +0300
commit0b6ecb2d0b8a2a0d6ae1009076f60f39bea7a92f (patch)
tree97563fe94d62c7be4b2174223e7211356e546f65
parentac603f0a2bb9a5935e78a2c7ec27fb4348b3dc29 (diff)
h2 to h3
-rw-r--r--layouts/_default/terms.html4
-rw-r--r--layouts/partials/post-list.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
index f111c68..0f0bcca 100644
--- a/layouts/_default/terms.html
+++ b/layouts/_default/terms.html
@@ -6,11 +6,11 @@
{{ $name := .Name }}
{{ $count := .Count }}
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
- <h2>
+ <h3>
<a href="{{ .Permalink }}">
{{ printf "(%d) %s" $count $name }}
</a>
- </h2>
+ </h3>
{{ end }}
{{ end }}
diff --git a/layouts/partials/post-list.html b/layouts/partials/post-list.html
index 993f0e3..00d60a2 100644
--- a/layouts/partials/post-list.html
+++ b/layouts/partials/post-list.html
@@ -1,8 +1,8 @@
<h1>{{ .Title }}</h1>
{{ range where .Pages.ByPublishDate.Reverse "Section" "post" }}
-<h2>
+<h3>
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
-</h2>
+</h3>
{{ end }} \ No newline at end of file