diff options
Diffstat (limited to 'src/html/feed.html')
-rw-r--r-- | src/html/feed.html | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/html/feed.html b/src/html/feed.html deleted file mode 100644 index 7128174..0000000 --- a/src/html/feed.html +++ /dev/null @@ -1,16 +0,0 @@ -<div class="feed"> - <div class="card" v-for="post in posts"> - <p class="card-text" v-html="post.description"></p> - <div class="card-img"> - <span v-for="image in post.images"> - <a v-bind:href="'/'+image"><img v-bind:src="'/'+image"></a> - </span> - </div> - <p class="date"> - <a v-bind:href="'/post/'+post.type+'/'+post.id">{{ post.createdAt.substring(0,10) }}</a> - <span v-for="tag in post.tags"> - <a class="tag" v-bind:href="'/tags#'+tag">{{tag}}</a> - </span> - </p> - </div> -</div>
\ No newline at end of file |