aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2020-03-25 19:06:36 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2020-03-25 19:06:36 +0100
commit0e9add9eea70ee2898c34c6a6f484987c0f152d2 (patch)
tree6c6b67682a65f53d5f46710f149868a584e179fa
parent9d41f9d896de1aa1772f4f86e384bad0d146dade (diff)
downloadmitjafelicijan.com-0e9add9eea70ee2898c34c6a6f484987c0f152d2.tar.gz
Fixed dates in posts
-rw-r--r--templates/post.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/post.twig b/templates/post.twig
index bd9fdaa..fbcb8d6 100644
--- a/templates/post.twig
+++ b/templates/post.twig
@@ -39,7 +39,7 @@
39 <header> 39 <header>
40 <h1>{{ options.title }}</h1> 40 <h1>{{ options.title }}</h1>
41 <div class="info"> 41 <div class="info">
42 <time datetime="{{ item.date|date("Y, F j") }}">{{ item.date|date("Y, F j") }}</time> 42 <time datetime="{{ options.date|date("Y, F j") }}">{{ options.date|date("Y, F j") }}</time>
43 <span>by {{ global.author }}</span> 43 <span>by {{ global.author }}</span>
44 </div> 44 </div>
45 </header> 45 </header>