VirtoCommerce / vc-storefront-deprecated

VirtoCommerce Storefront for ASP.NET (.NET Framework) repository (DEPRECATED)
http://virtocommerce.com
Other
26 stars 113 forks source link

Create sample storefront template with hierarchical category tree #38

Closed OlegoO closed 7 years ago

OlegoO commented 7 years ago

@tatarincev commented on Mon May 30 2016

Dhiren-K @Dhiren-K we want to give demo so in that categories should be displayed in multi level hierarchical way


@Dhiren-K commented on Tue May 31 2016

ok

OlegoO commented 7 years ago
<div class="catalog">
            <ul class="menu">
                {% for collection in collections %} 
                    <li class="menu-item">
                        <i class="menu-arrow"></i>
                        <a href="{{ collection.url | absolute_url }}" class="menu-link">{{ collection.title }}</a>

                        <ul class="menu">
                            {% for childCollection in collection.collections %}
                                <li class="menu-item">
                                    <i class="menu-arrow"></i>
                                    <a href="{{ childCollection.url | absolute_url }}" class="menu-link">{{ childCollection.title }}</a>
                                </li>
                            {% endfor %}
                        </ul>
                    </li>
                {% endfor %}
            </ul>