mirror of
https://github.com/flysnow-org/maupassant-hugo.git
synced 2026-08-24 15:28:55 +00:00
a314b017a7
* new: i18n translation support * new: Traditional Chinese, Japanese, and Korean translations * upd: casing
12 lines
320 B
HTML
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 }} |