travis-web/app/templates/branches.hbs
2015-09-17 14:49:35 +02:00

31 lines
716 B
Handlebars

<div class="branches">
<section>
<h2 class="small-title">Default Branch</h2>
<ul class="blank-list">
{{branch-row build=defaultBranch}}
</ul>
</section>
{{#if activeBranches}}
<section>
<h2 class="small-title">Active Branches</h2>
<ul class="blank-list">
{{#each branch in activeBranches}}
{{branch-row build=branch}}
{{/each}}
</ul>
</section>
{{/if}}
{{#if inactiveBranches}}
<section>
<h2 class="small-title">Inactive Branches</h2>
<ul class="blank-list">
{{#each branch in inactiveBranches}}
{{branch-row build=branch inactive=true}}
{{/each}}
</ul>
</section>
{{/if}}
</div>