First Commit

This commit is contained in:
Lorenzo Iovino 2016-01-29 13:14:27 +01:00
commit feb864dc47
170 changed files with 4671 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<ion-view class="category-feeds-view">
<ion-nav-title>
<span>{{categoryTitle}} feeds</span>
</ion-nav-title>
<ion-content>
<div class="list category-feeds">
<a ng-repeat="source in category_sources" class="item item-icon-right" ui-sref="app.feed-entries({categoryId: categoryId, sourceId: (source.title | slugify)})">
<div class="thumbnail-outer">
<pre-img ratio="_1_1" helper-class="">
<img class="thumbnail" ng-src="{{source.image}}" spinner-on-load>
</pre-img>
</div>
<div>
<span class="title">{{source.title}}</span>
<p class="description">{{source.description}}</p>
</div>
<i class="icon ion-arrow-right-c"></i>
</a>
</div>
</ion-content>
</ion-view>