For shopify there is one or two tutorials showing how to make a page that is a collection list.
I am wondering how can I use a collection template to create a list of collections if the user clicks view all.
I am trying to mimic something like this: https://www.prada.com/de/en/women/bags.html
Note the view all button and the buttons next to it.
|-Mens
|-Clothing
|-View all
|-Shirts
|-Pants
|-Womens
|-Clothing
|-View all
|-Shirts
|-Pants
|-Bags
if you are talking about creating a nav of collection and link them according to their handle you can do it like this.
{% for collection in collections %}
<a href="{{ collection.url }}">
<img src="{{ collection_image | img_url: '480x' }}" alt="">
{{ collection.title }}
</a>
{% endfor %}