first commit

This commit is contained in:
Dobie Wollert
2014-09-29 22:42:21 -07:00
commit 5151e6875d
17 changed files with 410 additions and 0 deletions

6
src/app/details.html Normal file
View File

@ -0,0 +1,6 @@
<img ng-src="{{post.header}}">
<div class="title">{{post.title}}</div>
<div class="body">{{post.body}}</div>
<div class="images">
<img ng-repeat="image in images track by $index" ng-src="{{image}}">
</div>