travis-web/app/templates/repo.hbs
2015-07-14 17:57:08 +02:00

37 lines
1.1 KiB
Handlebars

<div id="repo" class="{{view.className}} repo">
{{#if view.isEmpty}}
{{view 'repos-empty'}}
{{else}}
{{#if repo.isLoaded}}
<article id="repo-header" class="repo-header passed">
<header>
<h1 class="repo-header-title">{{#link-to "repo" repo}}{{repo.slug}}{{/link-to}}</h1>
<div class="repo-header-icons">
<a href={{controller.urlGithub}}><span class="icon icon--github-circle"></span></a>
<a href="#" id="status-image-popup" name="status-images" class="open-popup" {{action "statusImages" target=view}}>
<img src={{view.statusImageUrl}} title="Build Status Images"/>
</a>
</div>
<p class="description">{{description}}</p>
</header>
<div class="repo-menus">
<div class="repo-menu-header">
{{view 'repo-show-tools'}}
{{view 'repo-show-tabs'}}
</div>
<div class="tabbody repo-main">
{{outlet}}
</div>
</div>
</article>
{{else}}
{{loading-indicator}}
{{/if}}
{{/if}}
</div>