aboutsummaryrefslogtreecommitdiff
path: root/src/views/blog
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/blog')
-rw-r--r--src/views/blog/list-item.ecr7
-rw-r--r--src/views/blog/post.ecr30
2 files changed, 36 insertions, 1 deletions
diff --git a/src/views/blog/list-item.ecr b/src/views/blog/list-item.ecr
index 13131e0..23b868e 100644
--- a/src/views/blog/list-item.ecr
+++ b/src/views/blog/list-item.ecr
@@ -1,3 +1,8 @@
<div class='post'>
- id: <%= @post_id %>
+ <b><%= h(@item["name"]) %></b><br/>
+ <b>
+ by <%= h(@item["user_name"]) %>
+ on <%= h(@item["posted_at_text"]) %>
+ </b><br/><br/>
+ <%= @item["body"] %>
</div>
diff --git a/src/views/blog/post.ecr b/src/views/blog/post.ecr
new file mode 100644
index 0000000..d0aa534
--- /dev/null
+++ b/src/views/blog/post.ecr
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html lang='en-US'>
+ <head>
+ <meta charset="utf-8"/>
+ <title><%=
+ h(@item["name"])
+ %></title>
+
+ <%
+ # TODO: add theme styles
+ %>
+ </head>
+
+ <body>
+ <b>blog post</b>
+
+ <div class='post'>
+ <b><%= h(@item["name"]) %></b><br/>
+ <b>
+ by <%= h(@item["user_name"]) %>
+ on <%= h(@item["posted_at_text"]) %>
+ </b><br/><br/>
+ <%= @item["body"] %>
+ </div>
+ </body>
+
+ <%
+ # TODO: add theme scripts
+ %>
+</html>