mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-01 12:09:28 +01:00
20 lines
819 B
HTML
20 lines
819 B
HTML
<section data-ng-controller="ArticlesController" data-ng-init="find()">
|
|
<div class="page-header">
|
|
<h1>Articles</h1>
|
|
</div>
|
|
<div class="list-group">
|
|
<a data-ng-repeat="article in articles" data-ng-href="#!/articles/{{article._id}}" class="list-group-item">
|
|
<small class="list-group-item-text">
|
|
Posted on
|
|
<span data-ng-bind="article.created | date:'mediumDate'"></span>
|
|
by
|
|
<span data-ng-bind="article.user.displayName"></span>
|
|
</small>
|
|
<h4 class="list-group-item-heading" data-ng-bind="article.title"></h4>
|
|
<p class="list-group-item-text" data-ng-bind="article.content"></p>
|
|
</a>
|
|
</div>
|
|
<div class="alert alert-warning text-center" data-ng-if="articles.$resolved && !articles.length">
|
|
No articles yet, why don't you <a href="/#!/articles/create">create one</a>?
|
|
</div>
|
|
</section> |