Skip to content

Commit

Permalink
Run grunt.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnonEilat committed Jun 14, 2014
1 parent e0ddc12 commit 950931c
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 31 deletions.
2 changes: 1 addition & 1 deletion dest/css/style.css

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions dest/main-page/eKnight.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

<h3>{{eKnight.name}}</h3>
<p>{{eKnight.about}}</p>
<ul class="status-list">
<li>
<strong>סטטוס: </strong> {{eKnight.status}}
</li>
<li>
<strong>רמת כניסה: </strong> {{eKnight.status}}
</li>
<li title="{{eKnight.lastUpdate| date:'בdd לM yyyy בשעה HH:mm'}}">התעדכן לאחרונה {{eKnight.lastUpdate|hebTimeAgo}}</li>
</ul>

<div class="button-bar">
<a class="btn" href="{{eKnight.permalink}}">
<span class="btn-icon fa fa-home"></span>
<span class="btn-text">עמוד הבית</span>
</a>
<a class="btn" href="#/{{eKnight.slug}}" >
<span class="btn-icon fa fa-comments-o"></span>
<span class="btn-text">עמוד החשמביר</span>
</a>
<a class="btn" href="{{eKnight.github_repo}}">
<span class="btn-icon fa fa-github"></span>
<span class="btn-text">גיטהאב</span>
</a>
</div>
2 changes: 1 addition & 1 deletion dest/main-page/filters.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 12 additions & 27 deletions dest/main-page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,36 +25,21 @@ <h2>מבית הסדנא לידע ציבורי</h2>
</div>
</div>
<div class="eknights">
<article ng-repeat="eKnight in (eKnights|orderBy:'lastUpdate':true|emptyToEnd:'lastUpdate')" class="eKnight">
<h3>{{eKnight.name}}</h3>
<p>{{eKnight.about}}</p>
<ul class="status-list">
<li>
<strong>סטטוס: </strong> {{eKnight.status}}
</li>
<li>
<strong>רמת כניסה: </strong> {{eKnight.status}}
</li>
<li title="{{eKnight.lastUpdate| date:'בdd לM yyyy בשעה HH:mm'}}">התעדכן לאחרונה {{eKnight.lastUpdate|hebTimeAgo}}</li>
</ul>

<div class="button-bar">
<a class="btn" href="{{eKnight.permalink}}">
<span class="btn-icon fa fa-home"></span>
<span class="btn-text">עמוד הבית</span>
</a>
<a class="btn" href="#/{{eKnight.slug}}" >
<span class="btn-icon fa fa-comments-o"></span>
<span class="btn-text">עמוד החשמביר</span>
</a>
<a class="btn" href="{{eKnight.github_repo}}">
<span class="btn-icon fa fa-github"></span>
<span class="btn-text">גיטהאב</span>
</a>
</div>
<article ng-repeat="eKnight in (eKnights|orderBy:'lastUpdate':true|emptyToEnd:'lastUpdate'|ageGroup:true)"
class="eKnight"
data-ng-include="relativizePath('main-page/eKnight.html')">
</article>
</div>

<div class="old-eknights-warp" ng-if="oldReposExists == true">
<h2>לא התעדכן כבר מלא זמן:</h2>
<div class="eknights">
<article ng-repeat="eKnight in (eKnights|orderBy:'lastUpdate':true|emptyToEnd:'lastUpdate'|ageGroup:false)"
class="eKnight"
data-ng-include="relativizePath('main-page/eKnight.html')">
</article>
</div>
</div>
</div>

<div id="small-repos-warp" ng-include="relativizePath('main-page/small_repos.html')"></div>
Expand Down
2 changes: 1 addition & 1 deletion dest/main-page/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dest/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 950931c

Please sign in to comment.