diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-02-08 22:09:35 -0600 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-02-08 22:09:35 -0600 |
commit | ddddb356181baefbb03cbf710c9b6210b4d8de52 (patch) | |
tree | d2375dacf53e03370f3faa2fe714a4b4753a1354 /src/html/feed.html | |
parent | 7c3bb05841202dfc017cbd8ad872009819ccc581 (diff) |
Remove client side markdown, add single posts to all feeds
Diffstat (limited to 'src/html/feed.html')
-rw-r--r-- | src/html/feed.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html/feed.html b/src/html/feed.html index 15a364d..7128174 100644 --- a/src/html/feed.html +++ b/src/html/feed.html @@ -3,11 +3,11 @@ <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> + <a v-bind:href="'/'+image"><img v-bind:src="'/'+image"></a> </span> </div> <p class="date"> - {{ post.createdAt.substring(0,10) }} + <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> |