I want to display the **articles** that are in a section **before** the subsections. I tried rearranging the {{#if section.articles}} and {{#if section.sections}} in the section-template (see below), but it didn't seem to make any difference...
CODE:
<section class="breadcrumb-wrapper">
<div class="container breadcrumb-container border-bottom">
<nav class="breadcrumb-nav">
{{breadcrumbs}}
</nav>
</div>
</section>
<section class="content-wrapper section-content-wrapper">
<div class="container section-content-container">
<header class="page-header content-header">
<h1 class="content-title section-title">
{{section.name}}
{{#if section.internal}}
<span class="icon-lock" title="{{t 'internal'}}"></span>
{{/if}}
</h1>
{{#if settings.show_follow_section}} {{subscribe}} {{/if}}
</header>
{{#if section.description}}
<p class="page-header-description">
{{section.description}}
</p>
{{/if}}
{{#if section.articles}}
<ul class="article-list">
{{#each section.articles}}
<li class="article-list-item {{#if promoted}} article-promoted{{/if}}">
<a href="{{url}}" class="article-list-link collapsible-title" title="{{title}}">
<span>
{{#if promoted}}
<span data-title="{{t 'promoted'}}" class="icon-star">
</span>
{{/if}}
{{title}}
</span>
<img src="{{asset 'plus-icon.svg'}}" onerror="this.src={{asset 'plus-icon.png'}};this.onerror=null;" alt="plus-icon" class="close"/>
<img src="{{asset 'minus-icon.svg'}}" onerror="this.src={{asset 'minus-icon.png'}};this.onerror=null;" alt="minus-icon" class="open"/>
</a>
<p class="article-body collapsible-body">
{{excerpt body characters=250}}<br/>
<a href="{{url}}" class="view-more btn" role="button" title="{{t 'see_more'}}">
{{t 'see_more'}}
</a>
</p>
</li>
{{/each}}
</ul>
{{else}}
<i class="section-empty">
<a href="{{section.url}}" title="{{t 'empty'}}">
{{t 'empty'}}
</a>
</i>
{{/if}}
{{#if section.sections}}
<ul class="section-list section-list--collapsed">
{{#each section.sections}}
<li class="section-list-item">
<a href="{{url}}">
<span>{{name}}</span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" focusable="false" viewBox="0 0 16 16" aria-hidden="true">
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 14.5l6.1-6.1c.2-.2.2-.5 0-.7L5 1.5"/>
</svg>
</a>
</li>
{{/each}}
<a tabindex="0" class="see-all-sections-trigger" aria-hidden="true" id="see-all-sections-trigger" title="{{t 'see_all_sections'}}">{{t 'see_all_sections'}}</a>
</ul>
{{/if}}
WHAT I SEE ON SECTION PAGE:





