Skip to content

Commit 27c9eb4

Browse files
committed
Fixing date issue
1 parent f6ca097 commit 27c9eb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_includes/post.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ templateClass: tmpl-post
99
<span class="author">Author: <a href="{{ authors[author].link | url }}">{{authors[author].name}}</a>
1010
</span>
1111
<br/>
12-
<time datetime="{{ post.date | dateIso }}">{{ post.date | dateReadable }}</time>
12+
<time datetime="{{ date | dateIso }}">{{ date | dateReadable }}</time>
1313
</p>
1414

1515
{{ content | safe }}

events/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post.njk
33
title: Events
44
url: events
55
author: ian
6-
date: Last Modified
6+
date: 2019-11-09
77
---
88

99
The Node.js core API is built around the idea of events being "emitted" and "listened" to. Objects called "emitters" emit _named_ events, that are picked up by "listener" functions.

0 commit comments

Comments
 (0)