mirror of
https://github.com/arnaucube/decentralized-blogging-platform.git
synced 2026-02-07 11:26:43 +01:00
added post page, and added write page, with text editor
This commit is contained in:
@@ -1,4 +1,30 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div ng-repeat="post in posts" ng-if="$index % 3 == 0">
|
||||
<a ng-href="#!/post/{{post.id}}">
|
||||
<div ng-include="'views/templates/post-thumb-template.html'"></div>
|
||||
</a>
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div ng-repeat="post in posts" ng-if="$index % 3 == 1">
|
||||
<a ng-href="#!/post/{{post.id}}">
|
||||
<div ng-include="'views/templates/post-thumb-template.html'"></div>
|
||||
</a>
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div ng-repeat="post in posts" ng-if="$index % 3 == 2">
|
||||
<a ng-href="#!/post/{{post.id}}">
|
||||
<div ng-include="'views/templates/post-thumb-template.html'"></div>
|
||||
</a>
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<div class="card" style="width: 18rem;">
|
||||
|
||||
Reference in New Issue
Block a user