Skip to content

Instantly share code, notes, and snippets.

@bogdan-andrei-sturzoiu
Last active February 25, 2019 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogdan-andrei-sturzoiu/69895db186317c53c640ba27a5fd960c to your computer and use it in GitHub Desktop.
Save bogdan-andrei-sturzoiu/69895db186317c53c640ba27a5fd960c to your computer and use it in GitHub Desktop.
Sections-in-sections snippet
{{#if section.sections}}
<div class="section-tree">
{{#each section.sections}}
<section class="section">
<h3 class="section-tree-title">
<a href="{{url}}">{{name}}</a>
</h3>
{{#if articles}}
<ul class="article-list">
{{#each articles}}
<li class="article-list-item{{#if promoted}} article-promoted{{/if}}">
{{#if promoted}}
<span data-title="{{t 'promoted'}}" class="icon-star"></span>
{{/if}}
<a href="{{url}}" class="article-list-link">{{title}}</a>
{{#if internal}}
<span class="icon-lock" title="{{t 'internal'}}"></span>
{{/if}}
</li>
{{/each}}
</ul>
{{#if more_articles}}
<a href="{{url}}" class="see-all-articles">
{{t 'show_all_articles' count=article_count}}
</a>
{{/if}}
{{/if}}
</section>
{{/each}}
</div>
{{/if}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment