mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
Delete multilingual i18n files for UI labels. Add English labels to params.toml under [labels]. Update 404.html, single.html, and nav.html to use site.Params.labels instead of i18n. Signed-off-by: Sped0n <hi@sped0n.com>
17 lines
470 B
HTML
17 lines
470 B
HTML
{{- define "main" -}}
|
|
<div class="container">
|
|
{{- partial "nav.html" . -}}
|
|
<article>
|
|
<p class="error">
|
|
⛝ <u>404</u> {{- site.Params.labels.error -}} ⛝
|
|
</p>
|
|
<p class="error">
|
|
⛝ <u>404</u> {{- site.Params.labels.error -}} ⛝
|
|
</p>
|
|
<p class="error">
|
|
⛝ <u>404</u> {{- site.Params.labels.error -}} ⛝
|
|
</p>
|
|
</article>
|
|
</div>
|
|
{{- end -}}
|