diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2018-09-06 12:19:29 -0400 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2018-09-06 12:19:29 -0400 |
commit | 76e6a6c905d2a95b384b224198d26bacb0a1bf5e (patch) | |
tree | fcbcc56d8be7ca58b62d0b0fcda5f6445b2bf493 | |
parent | e01c63ade68e5f4d03b002a610c39751190f1abb (diff) |
make date_format a site-wide variable
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | _layouts/home.html | 5 | ||||
-rw-r--r-- | _layouts/post.html | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/_config.yml b/_config.yml index 8e7e03c..c9ce991 100644 --- a/_config.yml +++ b/_config.yml @@ -14,3 +14,5 @@ plugins: - jekyll-feed - jekyll-seo-tag - jekyll-paginate + +date_format: "%b %-d, %Y" diff --git a/_layouts/home.html b/_layouts/home.html index a4802ec..856f298 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -11,7 +11,10 @@ layout: default {{ post.title | escape }} </a> </h2> - <span>{{ post.date | date: "%b %-d, %Y" }}</span> + <span>{{ post.date | date: site.date_format }}</span> + {%- if post.updated %} + <span>(Updated {{ post.updated | date: site.date_format }})</span> + {% endif -%} <p>{{ post.description }}</p> </li> {%- endfor -%} diff --git a/_layouts/post.html b/_layouts/post.html index 27dc55e..7d74c5d 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -13,12 +13,12 @@ layout: default </span> <!-- • --> <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> - {{ page.date | date: "%b %-d, %Y" }} + {{ page.date | date: site.date_format }} </time> • {%- if page.updated %} <time datetime="{{ page.updated | date_to_xmlschema }}" itemprop="dateModified"> - (Updated {{ page.updated | date: "%b %-d, %Y" }}) + (Updated {{ page.updated | date: site.date_format }}) </time> • {% endif -%} |