diff --git a/_layouts/blog.html b/_layouts/blog.html
index 79557de..9a390ca 100644
--- a/_layouts/blog.html
+++ b/_layouts/blog.html
@@ -17,7 +17,7 @@
{{ page.content | markdownify }}
{% for post in paginator.posts %}
-
{{ post.date | date_to_string }} . {{ post.category }} . {{ post.title }} Comments
+ {{ post.date | date_to_string }} . {{ post.category }} . {{ post.title }} Comments
{% endfor %}
{% include pagination.html %}
diff --git a/scripts/newpost b/scripts/newpost
index 6816f7d..1f77eae 100755
--- a/scripts/newpost
+++ b/scripts/newpost
@@ -7,7 +7,7 @@ POSTS_DIR = '_posts/'
post = ARGV[0]
File.open(POSTS_DIR + Date.today.strftime("%Y-%m-%d-") + post + '.md', 'w') {|f| f.write(
- "---\nlayout: post\nsection-type: post\ntitle: \ncategory: \ntags: [ '', '' ]\n---")
+ "---\nlayout: post\nsection-type: post\ntitle: Title\ncategory: Category\ntags: [ 'tag1', 'tag2' ]\n---")
}
puts('[+] Created ' + post + ' post')