2014-07-10 01:11:28 +00:00
|
|
|
<article id="homepage">
|
|
|
|
<nav>
|
|
|
|
<a href="/"><span class="fa fa-th"></span></a>
|
|
|
|
<a href="/">dashboard</a>
|
|
|
|
</nav>
|
|
|
|
|
2014-07-10 05:24:06 +00:00
|
|
|
<section ng-if="feed.length == 0">
|
|
|
|
<div>
|
|
|
|
<h1>Activate your Repositories<br/><i class="fa fa-long-arrow-down"></i></h1>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section ng-if="feed.length > 0">
|
2014-07-10 01:11:28 +00:00
|
|
|
<div class="pure-g cards">
|
|
|
|
<a class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4 pure-u-xl-1-4 card card" href="/{{ commit | fullPath }}" ng-repeat="commit in feed | limitTo:4" data-status="{{ commit.status }}">
|
|
|
|
<div class="l-box">
|
|
|
|
<h2>{{ commit.owner }} <span class="separator">/</span> {{ commit.name }}</h2>
|
|
|
|
<em>{{ commit.finished_at | fromNow }}</em>
|
|
|
|
<img ng-src="{{ commit.gravatar | gravatar }}" />
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<div class="pure-g cards">
|
|
|
|
<a class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4 pure-u-xl-1-4 card card-inactive" href="/{{ repo | fullPath }}" ng-repeat="repo in repos | filter: { active: false } | limitTo:3">
|
|
|
|
<div class="l-box">
|
|
|
|
<h2>{{ repo.owner }} <span class="separator">/</span> {{ repo.name }}</h2>
|
|
|
|
<em><span class="fa fa-plus"></span> Activate</em>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
<a class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4 pure-u-xl-1-4 card card-browse-inactive" href="/account/repos">
|
|
|
|
<div class="l-box">
|
|
|
|
<span>Browse All</span><br>
|
|
|
|
<span class="fa fa-long-arrow-down"></span>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|