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

github.com/nodejh/hugo-theme-cactus-plus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornodejh <jianghangscu@gmail.com>2021-08-16 05:31:46 +0300
committernodejh <jianghangscu@gmail.com>2021-08-16 05:31:46 +0300
commit489c8fdf570af495bb72424bc3026c130ca96fe4 (patch)
treee5d45f2b2d406840686e58c6118f4ba810e8b094
parent123d6aff98cdccfc2c843a56b7f7304923a6bc5d (diff)
fix: footer align center
-rw-r--r--layouts/partials/footer.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 2bb658e..5ea8d0b 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -3,7 +3,7 @@
{{ partial "social.html" . }}
{{ end }}
- <p class="copyright">
+ <div class="copyright">
{{ with .Site.Params.copyright }}
{{ . | markdownify }}
{{ else }}
@@ -14,8 +14,8 @@
</span>
{{ .Site.Params.Author }}
{{ end }}
- </p>
- <p class="powerby">
+ </div>
+ <div class="powerby">
Powered by <a href="http://www.gohugo.io/">Hugo</a> Theme By <a href="https://github.com/nodejh/hugo-theme-cactus-plus">nodejh</a>
- </p>
+ </div>
</footer>