19 lines
626 B
HTML
19 lines
626 B
HTML
<div class="post" ng-repeat="post in posts">
|
|
<div class="titleContainer">
|
|
<h1 class="inlineFeatured title">{{post.title}}</h1>
|
|
<br>
|
|
<span class="inlineFeatured meta">
|
|
by
|
|
<span class="author">{{post.author}}</span>
|
|
on
|
|
<time datetime="{{post.date | date:'yyyy-MM-ddTH:mm'}}Z">{{post.date | date:'longDate'}}</time>
|
|
</span>
|
|
<br>
|
|
<span class="tags">
|
|
<span class="inlineFeatured tag" ng-repeat="tag in post.tags">{{tag}}</span>
|
|
</span>
|
|
</div>
|
|
<div class="content">{{post.content}}</div>
|
|
<hr>
|
|
</div>
|