summaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
authorArun <me@arunmathaisk.in>2024-09-14 00:40:35 +0530
committerArun <me@arunmathaisk.in>2024-09-14 00:40:35 +0530
commit974bc9f6ffa10d22c5d6f692fe79d71606bbb2d3 (patch)
tree1b7a4217c2f42ba1cb48de6c58997ed97141f6f6 /layouts/_default
parentaafdd813d7e7d169f64a3081ed6fecd8f6f72569 (diff)
feat: Content License and Copyright holder as Footer
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/baseof.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 373e635..fdee79d 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -25,7 +25,14 @@
</div>
<footer>
- {{ partial "footer.html" . }}
+ {{ if .Param "showFooterLicense" }}
+ <div>
+ {{ partial "footer-license.html" . }}
+ </div>
+ {{ end }}
+ <div>
+ {{ partial "footer.html" . }}
+ </div>
</footer>
</body>