mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-13 00:39:45 +00:00
12 lines
411 B
HTML
12 lines
411 B
HTML
{{ define "main" }}
|
|
<div class="container">
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
<div class="section tags-list">
|
|
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
|
|
<a class="tag-cloud" href="{{"tags/" | relLangURL }}{{ $name | urlize }}">{{ lower $name }} ({{ len $taxonomy }})</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|