Files
maupassant-hugo/layouts/partials/links.html
T
I'M YourOnly.One a314b017a7 新的国际化支持 | New Internationalization support (#159)
* new: i18n translation support

* new: Traditional Chinese, Japanese, and Korean translations

* upd: casing
2022-10-25 11:11:39 +08:00

12 lines
320 B
HTML

{{ with .Site.Params.links }}
<section class="widget">
<h3 class="widget-title">{{ i18n "links" }}</h3>
<ul class="widget-list">
{{ range . }}
<li>
<a target="_blank" href="{{ .url }}" title="{{ .title }}">{{ .name }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}