This is the coding I'm using:
<section class="categories blocks">
<ul>
{{#each categories}}
{{#if ../has_multiple_categories}}
<li>
<a href='{{url}}'>
<h3 class="h3line">{{name}}</h3>
</a>
</li>
{{!-- Here sections for the current category is shown --}}
<section class="blocks-list">
{{#each sections}}
<li class="blocks-item">
<a href="{{url}}" class="blocks-item-link">
<img class="icon" src="{{asset 'Purchase.png'}}" />
{{name}}
</a>
</li>
{{/each}}
</section>
{{/if}}
{{/each}}
</ul>
</section>
but for some reason, only admins can view them, it's blank for end users - we don't require you to sign in to see anything either :S - any help is appreciated
