diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2018-02-18 06:23:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2018-02-18 06:23:55 +0300 |
commit | f4f6530714ef52fdfa24bb306ca0066e04596988 (patch) | |
tree | aa1bcd2741efa90a689454b91de78c7ca8ab6572 | |
parent | cpp-notes is blog now (diff) | |
download | egor-tensin.github.io-f4f6530714ef52fdfa24bb306ca0066e04596988.tar.gz egor-tensin.github.io-f4f6530714ef52fdfa24bb306ca0066e04596988.zip |
don't zero-pad day number in dates
Diffstat (limited to '')
-rw-r--r-- | _includes/common/footer.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/common/footer.html b/_includes/common/footer.html index f03be73..97d65b7 100644 --- a/_includes/common/footer.html +++ b/_includes/common/footer.html @@ -11,7 +11,7 @@ </div> <div style="display: table-row;"> <div style="display: table-cell;"> - <div class="text-center text-muted"><small>This version of the page was generated on {{ site.time | date_to_long_string }}.</small></div> + <div class="text-center text-muted"><small>This version of the page was generated on {{ site.time | date: '%-d %B %Y' }}.</small></div> </div> </div> </div> |