| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <ion-view view-title="View Content">
- <ion-nav-buttons side="right" >
- <button class="button button-clear" ng-click="share()">
- <i class="icon ion-share"></i>
- </button>
- </ion-nav-buttons>
- <ion-content>
-
- <div ng-if="post">
- <!-- {{ post }} -->
- <img ng-src="{{ post | image_server }}" width=100% ng-if="post.feature_url">
- <img ng-src="img/default.png" ng-if="!post.feature_url" width=100%>
- <div class="padding">
- <h2>{{ post.title }}</h2>
- <div class="row">
- <!--<div class="col col-50">
- <button ng-click="fav(post._id.$oid, 'post')" class="button icon-left"><img src="img/star.png" class="icon" width="20px" style="vertical-align:middle"> + Favorite</button>
- </div>-->
- </div>
- <hr>
-
- <div ng-bind-html="post_body" class="post-body"></div>
- <br>
- <hr class="zig">
- <hr class="zag">
- <div class="text-center">
- <strong>More On</strong>
- </div>
- <div class="list card" ng-repeat="p in more_ons" ng-if="p._id.$oid != post._id.$oid" >
- <div class="item item-image borderless">
- <img ng-src="{{ p | image_server }}" ng-if="p.feature_url">
- <img ng-src="img/default.png" ng-if="!p.feature_url">
- </div>
- <h3 ng-click="go('/app/view/{{ p._id.$oid }}')">{{ p.title }}</h3>
- </div>
- </div>
- </div>
- </div>
- </ion-content>
- </ion-view>
|