Sitemap html

Hi,

I wanted to create something like this : https://www.silkjewellery.com/sitemap
I saw a post here in the community that uses menu links to achieve this but I want to automatically create it (not listing it one by one). Is there an app that can do that?

You could loop through the various objects to create something similar without the need for an external app.

# Sitemap

  
  - Pages
    

        {% for page in pages %}
          - {{ page.title }}
        {% endfor %}
    
  

  
  - Collections
    

        {% for collection in collections %}
          - {{ collection.title }}
          

                  {% for product in collection.products %}
                    - {{ product.title }}
                  {% endfor %}
          
        
        {% endfor %}
    
  

  
  - Blogs
    

        {% for blog in blogs %}
          - {{ blog.title }}
          

                  {% for article in blog.articles %}
                    - {{ article.title }}
                  {% endfor %}
          
        
        {% endfor %}
    
  

Hope this helps

Simon