mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 11:22:21 +01:00
16 lines
461 B
HTML
16 lines
461 B
HTML
<section class="container">
|
|
<div class="page-header">
|
|
<h1 ng-bind="vm.article.title"></h1>
|
|
</div>
|
|
<small>
|
|
<em class="text-muted">
|
|
Posted on
|
|
<span ng-bind="vm.article.created | date:'mediumDate'"></span>
|
|
by
|
|
<span ng-if="vm.article.user" ng-bind="vm.article.user.displayName"></span>
|
|
<span ng-if="!vm.article.user">Deleted User</span>
|
|
</em>
|
|
</small>
|
|
<p class="lead" ng-bind="vm.article.content"></p>
|
|
</section>
|