Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tags.html « partials « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d675e58f375c4f529c17d339472bd6c162044dd3 (plain)
1
2
3
4
5
6
7
8
9
<ul>
	{{ range .Params.tags }}
	<li>
		<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">
			{{- . -}}
		</a>
	</li>
	{{ end }}
</ul>