dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_compose
mirror of
https://github.com/onweru/compose.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
refactor template
weru
24.58.2023
c9d8cdea747992c74f78873fafb15529792ca380
[external-software/github_gohugo_theme_compose.git]
/
layouts
/
partials
/
footer.html
1
2
3
4
5
6
7
8
9
10
{{- $config := site.Params }}
{{- $author := $config.author }}
{{- if ne $config.enableCopyright false }}
<footer class="pt-2 pb-2">
<div class="wrap">
<p>© <span class="year">{{ now.Year }}</span>{{ with $author }} <a href ="{{ absLangURL .url }}" target="_blank" rel="noopener">{{ .name }}</a>{{ end }}</p>
<a href="#pagetop" id="toTop" title={{ T "to_top" }}></a>
</div>
</footer>
{{- end }}