diff --git a/views/partials/head.ejs b/views/partials/head.ejs
index f29bc9e..df9da08 100644
--- a/views/partials/head.ejs
+++ b/views/partials/head.ejs
@@ -5,4 +5,5 @@
+
diff --git a/views/posts/post.ejs b/views/posts/post.ejs
index fc6ff2c..7c0ed6d 100644
--- a/views/posts/post.ejs
+++ b/views/posts/post.ejs
@@ -1,29 +1,34 @@
+
+
<%- func.render_md(post.content) %>
-
-
<%= locale.written_by %> <%= user.username %>
-
-
- <%- func.render_tags(post.tags) %>
-
-
-
+
+ <%= locale.written_by %> <%= user.username %>
+
+ -
+
<%= locale.published %>: <%= func.unix_time_to_date_format(post.pubdate) %>
-
+
<%= locale.last_modified %>: <%= func.unix_time_to_date_format(post.pubdate) %>
+
<% if (config.enable_hitcount == true) { %>
Hitcount: <%- post.hitcount %>
@@ -31,6 +36,8 @@
<% } %>
+
+
+
+
+ <%- func.render_tags(post.tags) %>
+
+
<%- func.render_md(post.content) %>
-
-
<%= locale.written_by %> <%= user.username %>
-
-
-
- <%- func.render_tags(post.tags) %>
-
+
+ <%= user.username %>
+
+ -
+
+ <%= func.unix_time_to_date_format(post.pubdate) %>
+
+
-
- <%= locale.published %>: <%= func.unix_time_to_date_format(post.pubdate) %>
-
-
- <%= locale.last_modified %>: <%= func.unix_time_to_date_format(post.pubdate) %>
-
-
-
-
-
-
<%- config.seperator %>
-
diff --git a/views/posts/user.ejs b/views/posts/user.ejs
index d6bd80e..e532c71 100644
--- a/views/posts/user.ejs
+++ b/views/posts/user.ejs
@@ -1,48 +1,32 @@
+
+
+ <%- func.render_tags(post.tags) %>
+
+
- <%- func.render_md(post.content) %>
+ <%- func.render_md(post.content) %>
-
-
- <%- func.render_tags(post.tags) %>
-
+
+ <%= user.username %>
+
+ -
+
+ <%= func.unix_time_to_date_format(post.pubdate) %>
+
+
-
- <%= locale.published %>: <%= func.unix_time_to_date_format(post.pubdate) %>
-
-
- <%= locale.last_modified %>: <%= func.unix_time_to_date_format(post.pubdate) %>
-
-
-
-
-
-
<%- config.seperator %>
-
diff --git a/webroot/custom.css b/webroot/custom.css
new file mode 100644
index 0000000..ba7834c
--- /dev/null
+++ b/webroot/custom.css
@@ -0,0 +1,4 @@
+* {
+font-family: sans-serif;
+
+}
diff --git a/webroot/default.css b/webroot/default.css
new file mode 100644
index 0000000..5a6843c
--- /dev/null
+++ b/webroot/default.css
@@ -0,0 +1,16 @@
+body {
+ max-width: 900px;
+ margin: auto;
+}
+#header {
+ text-align: center;
+}
+#post-edit img {
+ width: 20px;
+}
+a {
+ text-decoration: none;
+}
+a:hover {
+ text-decoration: underline;
+}
diff --git a/webroot/icons/edit.png b/webroot/icons/edit.png
new file mode 100644
index 0000000..21123c0
Binary files /dev/null and b/webroot/icons/edit.png differ