Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions exampleSite/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ googleAnalytics = "" # Enable Google Analytics by entering your tracking id
pager = true
post_meta = ["date", "categories"] # Order of post meta information
mainSections = ["post", "docs"]
show_credits = true

[Params.logo]
subtitle = "Just another site" # Logo subtitle
Expand Down
2 changes: 2 additions & 0 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
{{ partial "footer_links.html" . }}
<div class="footer__copyright">
&copy; {{ now.Format "2006" }} {{ .Site.Params.copyright | default .Site.Title }}.
{{ if .Site.Params.show_credits }}
<span class="footer__copyright-credits">{{ T "footer_credits" | safeHTML }}</span>
{{ end }}
</div>
</div>
</footer>
Loading