mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-16 20:32:21 +01:00
19 lines
692 B
HTML
19 lines
692 B
HTML
<section class="container">
|
|
<div class="page-header">
|
|
<h1>Articles</h1>
|
|
</div>
|
|
<div class="list-group">
|
|
<a ng-repeat="article in vm.articles" ui-sref="articles.view({ articleId: article._id })" class="list-group-item">
|
|
<small class="list-group-item-text">
|
|
Posted on
|
|
<span ng-bind="article.created | date:'mediumDate'"></span>
|
|
by
|
|
<span ng-if="article.user" ng-bind="article.user.displayName"></span>
|
|
<span ng-if="!article.user">Deleted User</span>
|
|
</small>
|
|
<h4 class="list-group-item-heading" ng-bind="article.title"></h4>
|
|
<p class="list-group-item-text" ng-bind="article.content"></p>
|
|
</a>
|
|
</div>
|
|
</section>
|