w2ng/themes/hugo-w2ng/layouts/partials/meta.html
2020-01-07 14:05:49 +08:00

24 lines
796 B
HTML

<div class="flex flex-col md:flex-row justify-between">
{{ with .Params.categories }}
<ul class="flex justify-end" itemprop="articleSection">
{{ range . }}
<li class="pr-2"><a href="{{ . | printf "categories/%s" | relURL }}" rel="category">{{ . }}</a></li>
{{ end }}
</ul>
{{ end }}
{{ with .Params.tags }}
<ul class="flex justify-end">
{{ range . }}
<li itemprop="keywords" class="pl-2 md:pl-4">
<a href="{{ (urlize (printf "tags/%s/" . )) | absLangURL }}">
{{ if and (eq . "markdown") (eq . "markdown") }}
<mark>#{{ . }}</mark>
{{ else }}
#{{ . }}
{{ end }}
</a>
</li>
{{ end }}
</ul>
{{ end }}
</div>