{{ page.content | markdownify }}
diff --git a/_includes/latest-post.html b/_includes/latest-post.html
index 8799f17..a2563c3 100644
--- a/_includes/latest-post.html
+++ b/_includes/latest-post.html
@@ -3,7 +3,7 @@
-
+
{{ page.content | markdownify }}
@@ -16,7 +16,7 @@
{{ post.content | truncatewords: site.post-preview-words | strip_html | markdownify }}
-
View more posts
+
diff --git a/_includes/post-list.html b/_includes/post-list.html
new file mode 100644
index 0000000..23432cc
--- /dev/null
+++ b/_includes/post-list.html
@@ -0,0 +1,15 @@
+
+
+
+
+ {{ post.date | date_to_string }}
+ . {{ post.category }} .
+
+
+ {{ post.title }}
+
+
+ Comments
+
+
+
diff --git a/_includes/timeline.html b/_includes/timeline.html
index 9c91151..9f1a091 100644
--- a/_includes/timeline.html
+++ b/_includes/timeline.html
@@ -3,7 +3,7 @@
-
+
{{ page.content | markdownify }}
diff --git a/_layouts/blog.html b/_layouts/blog.html
index a5d7cf5..5b2f49a 100644
--- a/_layouts/blog.html
+++ b/_layouts/blog.html
@@ -12,13 +12,13 @@
-
+
{{ page.content | markdownify }}
-
+
{% for post in paginator.posts %}
-
{{ post.date | date_to_string }} . {{ post.category }} .
{{ post.title }}
Comments
+ {% include post-list.html%}
{% endfor %}
diff --git a/_layouts/error.html b/_layouts/error.html
index 7c77ba2..9ef423b 100644
--- a/_layouts/error.html
+++ b/_layouts/error.html
@@ -12,7 +12,7 @@
-
+
{{ page.title }}
@@ -20,9 +20,6 @@

-
-
-
{% include social-buttons.html %}
diff --git a/_layouts/post.html b/_layouts/post.html
index e38e453..d6c43c5 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -12,7 +12,7 @@
-
+
{{ page.title }}
{{ page.date | date_to_string }}
diff --git a/_layouts/tag.html b/_layouts/tag.html
index 172224f..bbdce3a 100644
--- a/_layouts/tag.html
+++ b/_layouts/tag.html
@@ -12,10 +12,7 @@
-
-
-
-
+
{% assign tag = page.title %}
@@ -24,7 +21,7 @@
{% for post in site.posts %}
{% if post.tags contains tag %}
-
{{ post.date | date_to_string }} . {{ post.category }} . {{ post.title }} Comments
+ {% include post-list.html%}
{% endif %}
{% endfor %}