Thomas Wade a205dc9c7e Add FAQ functionality and some style tweaks
Switched to HTML5-style routing
Reworked Express backend to accommodate HTML5-style routing
Links are now highlighted with a black background and white foreground
Reworked spacing on H1s
Added classes to nav buttons
2018-10-30 17:33:24 +10:30

19 lines
649 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" ng-bind-html="post.content | markdown"></div>
<hr>
</div>