i18n: add variables for footer translation
This commit is contained in:
parent
50b3ed18e3
commit
81c0b1ba9c
@ -32,7 +32,7 @@
|
|||||||
other = "#PAGES_COUNT pages (#TIME_SECONDS seconds)"
|
other = "#PAGES_COUNT pages (#TIME_SECONDS seconds)"
|
||||||
|
|
||||||
[footerBuiltWith]
|
[footerBuiltWith]
|
||||||
other = "Built with"
|
other = "Built with {{ .Generator }}"
|
||||||
|
|
||||||
[footerDesignedBy]
|
[footerDesignedBy]
|
||||||
other = "designed by"
|
other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}"
|
@ -32,7 +32,7 @@
|
|||||||
other = "#PAGES_COUNT pages (#TIME_SECONDS secondes)"
|
other = "#PAGES_COUNT pages (#TIME_SECONDS secondes)"
|
||||||
|
|
||||||
[footerBuiltWith]
|
[footerBuiltWith]
|
||||||
other = "Généré avec"
|
other = "Généré avec {{ .Generator }}"
|
||||||
|
|
||||||
[footerDesignedBy]
|
[footerDesignedBy]
|
||||||
other = "conçu par"
|
other = "Thème {{ .Theme }} conçu par {{ .DesignedBy }}"
|
@ -1,8 +1,12 @@
|
|||||||
|
{{- $ThemeVersion := "1.1.0" -}}
|
||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<section class="copyright">© {{ now.Format "2006" }} {{ .Site.Title }}</section>
|
<section class="copyright">© {{ now.Format "2006" }} {{ .Site.Title }}</section>
|
||||||
<section class="powerby">
|
<section class="powerby">
|
||||||
{{ T "footerBuiltWith" }} <a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> <br />
|
{{- $Generator := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}}
|
||||||
Theme <b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="1.1.0">Stack</a></b> {{ T "footerDesignedBy" }}
|
{{- $Theme := printf `<b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="%s">Stack</a></b>` $ThemeVersion -}}
|
||||||
<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>
|
{{- $DesignedBy := `<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>` -}}
|
||||||
|
|
||||||
|
{{ T "footerBuiltWith" (dict "Generator" $Generator) | safeHTML }} <br />
|
||||||
|
{{ T "footerDesignedBy" (dict "Theme" $Theme "DesignedBy" $DesignedBy) | safeHTML }}
|
||||||
</section>
|
</section>
|
||||||
</footer>
|
</footer>
|
Loading…
Reference in New Issue
Block a user