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

github.com/huyb1991/hugo-lamp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHuy Nguyen <huyb.1991@gmail.com>2019-05-18 08:18:47 +0300
committerHuy Nguyen <huyb.1991@gmail.com>2019-05-18 08:18:47 +0300
commitcadac8190ce619dc23fc13601a58cd272fbce196 (patch)
tree9c266ce0dc35d42a08acd6e076a7fefb1921b9d4
parentb11f24573f3e51d5aef6b0beb333b1c8b844a10c (diff)
Move footer to baseof
-rw-r--r--layouts/_default/about.html1
-rw-r--r--layouts/_default/baseof.html1
-rw-r--r--layouts/_default/list.html1
-rw-r--r--layouts/index.html1
-rw-r--r--layouts/post/single.html1
5 files changed, 1 insertions, 4 deletions
diff --git a/layouts/_default/about.html b/layouts/_default/about.html
index 8f2891f..af91175 100644
--- a/layouts/_default/about.html
+++ b/layouts/_default/about.html
@@ -9,5 +9,4 @@
</header>
<article class="post-content">{{ .Content }}</article>
</section>
- {{ partial "footer.html" . }}
{{ end }}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 97cd02e..54fcd1b 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -29,5 +29,6 @@
{{ partial "header.html" . }}
{{ partial "sidebar.html" . }}
{{ block "main" . }}{{ end }}
+ {{ partial "footer.html" . }}
</body>
</html>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index e6f2bcb..0e598aa 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -42,5 +42,4 @@
</nav>
{{ end }}
</section>
- {{ partial "footer.html" . }}
{{ end }}
diff --git a/layouts/index.html b/layouts/index.html
index f8a4c43..dd83868 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -20,5 +20,4 @@
</nav>
{{ end }}
</section>
- {{ partial "footer.html" . }}
{{ end }}
diff --git a/layouts/post/single.html b/layouts/post/single.html
index 4a35014..58e0273 100644
--- a/layouts/post/single.html
+++ b/layouts/post/single.html
@@ -27,5 +27,4 @@
</div>
</footer>
</section>
- {{ partial "footer.html" . }}
{{ end }}