Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/forestryio/hugo-theme-novela.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormountainbug95 <tannersmithtn95@gmail.com>2019-09-27 23:23:00 +0300
committermountainbug95 <tannersmithtn95@gmail.com>2019-09-27 23:23:00 +0300
commit5c8552f6f2623a9025abd51eafdf3a8bd3fb0b4c (patch)
tree1f8de8238fad07b92832b44b3f9c324ffe7e7728
parent87d529d3ced832c198e9e83ec8ab081dbeeca28c (diff)
Fix the date formats
-rw-r--r--content/posts/2019-04-29.md2
-rw-r--r--content/posts/2019-04-31.md2
-rw-r--r--layouts/partials/article/article_hero.html2
-rw-r--r--layouts/partials/articles/articles_list.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/content/posts/2019-04-29.md b/content/posts/2019-04-29.md
index 5824c75..cfe1a26 100644
--- a/content/posts/2019-04-29.md
+++ b/content/posts/2019-04-29.md
@@ -1,7 +1,7 @@
---
title: Building the new Hopper.com
author: Dennis Brotzky
-date: 2017-03-03
+date: 2019-04-29
hero: /images/heros/hero-11.jpg
excerpt: Creating a new website for Hopper, one of the top 4 most downloaded travel apps in the U.S, along with Uber, Lyft.
show_subscription: true
diff --git a/content/posts/2019-04-31.md b/content/posts/2019-04-31.md
index b9a1515..c6efb98 100644
--- a/content/posts/2019-04-31.md
+++ b/content/posts/2019-04-31.md
@@ -1,7 +1,7 @@
---
title: Understanding the Gatsby lifecycle with Narative
author: Thiago Costa, Dennis Brotzky, Brad Tiller, Mack Mansouri
-date: 2019-04-31
+date: 2019-04-30
hero: /images/heros/hero-2.jpg
excerpt: With the growing community interest in Gatsby, we hope to create more resources that make it easier for anyone to grasp the power of this incredible tool.
timeToRead: 6
diff --git a/layouts/partials/article/article_hero.html b/layouts/partials/article/article_hero.html
index 4755914..d393288 100644
--- a/layouts/partials/article/article_hero.html
+++ b/layouts/partials/article/article_hero.html
@@ -5,7 +5,7 @@
<div class="article-hero-subtitle">
<div class="article-meta">
{{ partial "article/article_authors.html" . }}
- {{ .Page.Date | dateFormat "January 1, 2019" }}
+ {{ .Page.Date.Format "January 2, 2006" }}
{{ if .Page.Params.timetoread }} • {{ .Page.Params.timetoread }} min read{{ end }}
</div>
</div>
diff --git a/layouts/partials/articles/articles_list.html b/layouts/partials/articles/articles_list.html
index 7e7ab7d..9d6d8b4 100644
--- a/layouts/partials/articles/articles_list.html
+++ b/layouts/partials/articles/articles_list.html
@@ -33,7 +33,7 @@
{{ $article.Params.excerpt }}
</p>
<div class="article-metadata">
- {{ $article.Date.Format "January 1, 2019" }}{{ if $article.Params.timetoread }} • {{ $article.Params.timetoread }} min read{{ end }}
+ {{ $article.Date.Format "January 2, 2006" }}{{ if $article.Params.timetoread }} • {{ $article.Params.timetoread }} min read{{ end }}
</div>
</div>
</div>