2017-04-01 14:38:42 +08:00
|
|
|
<section class="container">
|
2015-07-25 16:53:11 -04:00
|
|
|
<div class="page-header">
|
|
|
|
|
<h1>Articles</h1>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="list-group">
|
2016-01-01 14:58:42 -05:00
|
|
|
<a ng-repeat="article in vm.articles" ui-sref="articles.view({ articleId: article._id })" class="list-group-item">
|
2015-07-25 16:53:11 -04:00
|
|
|
<small class="list-group-item-text">
|
|
|
|
|
Posted on
|
2015-08-07 23:53:32 -04:00
|
|
|
<span ng-bind="article.created | date:'mediumDate'"></span>
|
2015-07-25 16:53:11 -04:00
|
|
|
by
|
2015-12-16 15:20:22 -08:00
|
|
|
<span ng-if="article.user" ng-bind="article.user.displayName"></span>
|
|
|
|
|
<span ng-if="!article.user">Deleted User</span>
|
2015-07-25 16:53:11 -04:00
|
|
|
</small>
|
2015-08-07 23:53:32 -04:00
|
|
|
<h4 class="list-group-item-heading" ng-bind="article.title"></h4>
|
|
|
|
|
<p class="list-group-item-text" ng-bind="article.content"></p>
|
2015-07-25 16:53:11 -04:00
|
|
|
</a>
|
|
|
|
|
</div>
|
2014-11-10 23:12:33 +02:00
|
|
|
</section>
|