diff --git a/_includes/blog-list.html b/_includes/blog-list.html index a82eeccc4..91d996d90 100644 --- a/_includes/blog-list.html +++ b/_includes/blog-list.html @@ -16,13 +16,13 @@ {% for post in paginator.posts %}

{{post.title}}

-

{{post.date | date: "%A %-d %B %Y"}}

+ {% if post.by %}

{{post.by}}

{% endif %} {% if post.tags %} {% endif %}
@@ -37,7 +37,7 @@

{{post.title}}

{% capture urlPath %}{% if include.category == "all" %}blog{% else %}{{currentCategoryPath}}{% endif %}{% endcapture %} {% assign urlPath = urlPath | split: '/' | join: '/' | remove_first: '/' %} - {% include paginator.html urlPath=urlPath %} + {% include paginator.html urlPath=urlPath %} {% assign highlights = "" | split: "," %} {% for post in site.posts %} @@ -51,7 +51,7 @@

{{post.title}}

Highlights
-
+
{% endif %}

{{post.title}}

@@ -70,6 +70,6 @@

{{post.title}}

{% endif %} {% endfor %} - +
- \ No newline at end of file + diff --git a/_includes/inner-page-blog-detail-main-content.html b/_includes/inner-page-blog-detail-main-content.html index 423201802..cb67ea0c6 100644 --- a/_includes/inner-page-blog-detail-main-content.html +++ b/_includes/inner-page-blog-detail-main-content.html @@ -4,7 +4,7 @@
-

{{page.date | date: "%A %-d %B %Y"}}

+

{{page.by}}

{% if page.tags %} diff --git a/_layouts/blog.html b/_layouts/blog.html index 652651fed..f97b8349a 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -3,7 +3,7 @@ ---
- + {% if page.by %}
Written By: {{ page.by }}
{% endif %}