We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5738142 commit 4238491Copy full SHA for 4238491
2 files changed
doc/config.yaml
@@ -10,6 +10,8 @@ markup:
10
noClasses: false
11
12
params:
13
+ author:
14
+ name: "Scientific Python team"
15
description: "Documentation & template site for the Scientific Python Hugo Theme."
16
images:
17
- /images/logo.svg
layouts/partials/footer.html
@@ -1,4 +1,5 @@
1
-{{- $title := .Site.Params.title }}
+{{- $title := .Site.Title }}
2
+{{- $author := .Site.Params.author.name }}
3
{{- $footer := .Site.Params.footer }}
4
{{- $logo := index $footer "logo" }}
5
{{- $quickLinks := index $footer "quicklinks" }}
@@ -43,7 +44,7 @@
43
44
{{- end }}
45
</div>
46
</nav>
- <div class="copyright">© {{ now.Year}} {{ $title }}. All rights reserved.</div>
47
+ <div class="copyright">© {{ now.Year}} {{ $author }}. All rights reserved.</div>
48
49
50
0 commit comments