diff options
author | Indrajith K L | 2022-11-05 03:19:50 +0530 |
---|---|---|
committer | Indrajith K L | 2022-11-05 03:21:54 +0530 |
commit | e776c62e6bbaabe5fd1def8394c5497d81d09178 (patch) | |
tree | edfce446b6536bd3db7c904d4acc086d000841fd /src/posts/big-list-game-dev.njk | |
parent | c391b3793770b2b296d615ee63836a344eeb3a0f (diff) | |
download | indrajith-dev-e776c62e6bbaabe5fd1def8394c5497d81d09178.tar.gz indrajith-dev-e776c62e6bbaabe5fd1def8394c5497d81d09178.tar.bz2 indrajith-dev-e776c62e6bbaabe5fd1def8394c5497d81d09178.zip |
Fixes: Wrong Dates in post publication
Adds: Post modified dates
Diffstat (limited to 'src/posts/big-list-game-dev.njk')
-rw-r--r-- | src/posts/big-list-game-dev.njk | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/posts/big-list-game-dev.njk b/src/posts/big-list-game-dev.njk index 679c8ae..1dc03fd 100644 --- a/src/posts/big-list-game-dev.njk +++ b/src/posts/big-list-game-dev.njk @@ -1,7 +1,13 @@ ---- -layout: posts.njk -title: Big List of Open Source Game Development Tools -description: Big List of Open Source Game Development Tools +---js +{ + layout: "posts.njk", + title: "Big List of Open Source Game Development Tools", + description: "Big List of Open Source Game Development Tools", + date: "Created", + modified: function() { + return (new Date().toUTCString()) + } +} --- <p class="mt-5">Welcome to the big list (eventually it will be) of always updating bucket of <span class="font-bold">Open Source Game Development Tools</span>. |