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

github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--layouts/partials/page-header.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/partials/page-header.html b/layouts/partials/page-header.html
index 8fbaea3..3891c45 100644
--- a/layouts/partials/page-header.html
+++ b/layouts/partials/page-header.html
@@ -6,11 +6,11 @@
{{ partial "site-navigation.html" . }}
<div class="tc-l pv6 ph3 ph4-ns">
{{ if not .Params.omit_header_text }}
- <h1 class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</h1>
+ <div class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</div>
{{ with .Params.description }}
- <h2 class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
+ <div class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
{{ . }}
- </h2>
+ </div>
{{ end }}
{{ end }}
</div>