59 lines
2.4 KiB
HTML
59 lines
2.4 KiB
HTML
<ion-view class="">
|
|
<ion-nav-title>
|
|
<span>{{categoryTitle}}</span>
|
|
</ion-nav-title>
|
|
<ion-content>
|
|
|
|
<input type="text" placeholder="Search" ng-hide="categoryId=='settings' || categoryId=='addticketwithphoto'">
|
|
|
|
|
|
<div class="list category-homes">
|
|
<a ng-repeat="source in category_sources" class="item item-icon-right" ui-sref="app.category-entries({categoryId: categoryId, sourceId: (source.title)})">
|
|
<div class="thumbnail-outer" style="height:80px;">
|
|
<pre-img ratio="_1_1" helper-class="">
|
|
<img class="" 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 ng-hide="categoryId=='shop'" class="icon ion-arrow-right-c"></i>
|
|
<i ng-show="categoryId=='shop'" class="icon ion-bag"></i>
|
|
|
|
</a>
|
|
</div>
|
|
|
|
<div class="form-group padding-top" ng-show="categoryId=='addticketwithphoto'">
|
|
<button class="button button-full button-positive icon ion-camera" data-ng-click="takePicture()">
|
|
Scatta!
|
|
</button>
|
|
</div>
|
|
|
|
<div class="item item-image" ng-show="categoryId=='addticketwithphoto'">
|
|
<img ng-src="{{cameraPic}}"/>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="top-content row" ng-show="categoryId=='settings'">
|
|
<div class="profile-container">
|
|
<div class="user-image-container">
|
|
<pre-img ratio="_1_1" helper-class="rounded-image">
|
|
<img class="user-image" ng-src="https://s3.amazonaws.com/uifaces/faces/twitter/brynn/128.jpg" spinner-on-load>
|
|
</pre-img>
|
|
</div>
|
|
<div class="user-name">Brynn Evans</div>
|
|
<div class="user-twitter">@brynn</div>
|
|
</div>
|
|
<div class="user-background-image-outer">
|
|
<div multi-bg="['https://s3.amazonaws.com/uifaces/faces/twitter/brynn/128.jpg']"></div>
|
|
</div>
|
|
</div>
|
|
<div class="bottom-content">
|
|
<div class="user-bio">
|
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
|
|
</div>
|
|
</div>
|
|
</ion-content>
|
|
</ion-view>
|