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

taxonomy_list.html « partials « layouts - github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eb24aaf4c8e85559ea6fa0286f54b39655efaa8 (plain)
1
2
3
4
5
6
7
8
9
10
{{ range $name, $value_ := . }}
<a class="no-underline" href="{{ "/tags/" | relLangURL }}{{ $name | urlize }}">
	<div
		class="bg-secondary-dark dark:bg-secondary-light hover:bg-secondary rounded-full p-1 pr-2 mr-2 mb-3 flex-initial ease-in-out duration-200">
		<img style="width: 30px; height: 30px;" class="inline rounded-full shadow-4" src=" {{ "icons/tag.svg" | relURL }}"
			alt="tag icon">
		<span class="inline font-sans align-middle select-none text-xl mr-1 blend-diff">{{ $name | upper }}</span>
	</div>
</a>
{{ end }}