Tag cloud: names and keys

Hello. My website https://stoned.io has a tag cloud in the side panel mobile menu, for which the source code is as follows.

<div class="tag-cloud">
        <h3>Tags</h3>

        <ul class="shadow">
            {{ range $name, $taxonomy := .Site.Taxonomies.tags }}
            <li><a class="shadow" href="/tags/{{ $name | urlize }}">{{ $name }}</a></li>
            {{ end }}
        </ul>

    </div>

If I understand you correctly, I think you’re looking for the tags, without having to add them manually. This way, the tag cloud is based on the front matter of the article, which can be defined in your archetypes.

I hope that this helps.
Sincerely,

Hash