Skip to content

Commit 3c758ce

Browse files
authored
Merge pull request #13 from milancurcic/change-date-formatting-in-news-list
Change date format to %d %b %Y in news list
2 parents bbd8997 + 76a5785 commit 3c758ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ <h2 id="news">News</h2>
5959
{% for post in site.posts limit:posts_to_show %}
6060
<tr>
6161
<td><a href="{{ post.url }}">{{ post.title }}</a>&nbsp;&nbsp; </td>
62-
<td style="white-space: nowrap; text-align: right">{{ post.date | date:"%B %Y" }}</td>
62+
<td style="white-space: nowrap; text-align: right">{{ post.date | date:"%d %b %Y" }}</td>
6363
</tr>
6464
{% comment %} <dd></dd> {% endcomment %}
6565
{% endfor %}

0 commit comments

Comments
 (0)