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

github.com/gethugothemes/dot-hugo-documentation-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSomrat <themefisher.dev@gmail.com>2021-12-18 09:24:57 +0300
committerSomrat <themefisher.dev@gmail.com>2021-12-18 09:24:57 +0300
commitfa2d300c90ab4549f3bc09282e21cac9b0fa603e (patch)
treef5ddb346ba559d9ca86fb5e04de29b14be257b54
parentee51534a34f79ca88618bbe39d85debdd6cd8207 (diff)
fixed language switcher
-rw-r--r--exampleSite/.hugo_build.lock0
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/index.html4
3 files changed, 3 insertions, 3 deletions
diff --git a/exampleSite/.hugo_build.lock b/exampleSite/.hugo_build.lock
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/exampleSite/.hugo_build.lock
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 56b3402..9f0ebe7 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -13,7 +13,7 @@
{{ else }}
{{ "<!-- header -->" | safeHTML }}
<header class="shadow-bottom sticky-top bg-white">
- {{ partialCached "navigation.html" . }}
+ {{ partial "navigation.html" . }}
</header>
{{ "<!-- /header -->" | safeHTML }}
{{ end }}
diff --git a/layouts/index.html b/layouts/index.html
index 26ee869..c8a399b 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,8 +1,8 @@
{{ define "main" }}
{{ if .Content }}
- <section class="section text-center">
- <div class="container-fluid">
+ <section class="section text-center pb-0">
+ <div class="container">
{{ .Content }}
</div>
</section>