mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-02-15 00:01:11 +01:00
Fix: remove submodule
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{{- $author := site.Params.footer.copyright.author }}
|
||||
{{- $yearStart := string site.Params.footer.copyright.yearStart }}
|
||||
{{- $yearEnd := string (default (now.Format "2006") site.Params.footer.copyright.yearEnd) }}
|
||||
{{- $yearSpan := "" }}
|
||||
{{- if not $yearStart }}
|
||||
{{- /* Use $yearEnd if $yearStart doesn't exist */ -}}
|
||||
{{- $yearSpan = $yearEnd }}
|
||||
{{- else if eq $yearStart $yearEnd }}
|
||||
{{- $yearSpan = $yearEnd }}
|
||||
{{- else }}
|
||||
{{- $yearSpan = printf "%s-%s" $yearStart $yearEnd }}
|
||||
{{- end -}}
|
||||
<p class="footer__copyright-notice">© {{ $yearSpan }} {{ $author }}</p>
|
||||
@@ -0,0 +1,3 @@
|
||||
{{- with .OutputFormats.Get "rss" -}}
|
||||
<p class="footer__rss-link"><a href="{{ .RelPermalink }}">RSS</a></p>
|
||||
{{- end }}
|
||||
@@ -0,0 +1,3 @@
|
||||
{{- $hugo := "<a href='https://gohugo.io'>Hugo</a>" -}}
|
||||
{{- $yue := "<a href='https://github.com/CyrusYip/hugo-theme-yue'>Yue</a>" -}}
|
||||
<p class="footer__theme-info">{{ i18n "themeInfo" (dict "hugo" $hugo "yue" $yue) | safeHTML }}</p>
|
||||
Reference in New Issue
Block a user