diff --git a/_layouts/post.html b/_layouts/post.html
index 6c6063cf..8766ac50 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -9,6 +9,16 @@
+
+
+
+ {% assign minutes = content | strip_html | number_of_words | divided_by: 180 %}
+ {% if minutes == 0 %}
+ {% assign minutes = 1 %}
+ {% endif %}
+
+
+
{{ page.date | date: "%B %e, %Y" }}
@@ -17,6 +27,9 @@
- {{ page.author }}
{% endif %}
+
+
+
diff --git a/css/base.scss b/css/base.scss
index b7f3b889..f944e033 100644
--- a/css/base.scss
+++ b/css/base.scss
@@ -675,6 +675,12 @@ blockquote {
color: #8b8b8b;
margin-bottom: -25px;
}
+
+ .time{
+ font-size:12px;
+ color: #8b8b8b;
+
+ }
}
// ============== /POST ============== //