From 63668ca89f055b2233a8aa6caf4213853918d68d Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 15 Nov 2020 21:43:36 -0600 Subject: Switch to handlebars for templating --- src/templates/feed.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/templates/feed.html (limited to 'src/templates/feed.html') diff --git a/src/templates/feed.html b/src/templates/feed.html new file mode 100644 index 0000000..2158f3e --- /dev/null +++ b/src/templates/feed.html @@ -0,0 +1,24 @@ +
+ {{#each posts}} +
+

{{{this.description}}}

+
+ {{#each this.images}} + + + + {{/each}} +
+

+ + {{this.createdAt}} + + + {{#each this.tags}} + {{this}} + {{/each}} + +

+
+ {{/each}} +
\ No newline at end of file -- cgit v1.2.3