hugo-theme-bootstrap4-blog/layouts/_default
Alan Orth f7d9451aa6
layouts: Fix minor encoding issue with dates
This is similar to other encoding issues we have fixed lately where
we need to make sure Hugo (or Golang's HTML template library) does
not escape our non-ASCII content.

For example, this is how our datetimes end up currently:

    <p class="blog-post-meta"><time datetime="2020-01-16T09:23:20&#43;02:00">Thu Jan 16, 2020</time> by Alan Orth

After printing them with `printf` and filtering them with the Hugo
built-in function `safeHTMLAttr` they look like this:

    <p class="blog-post-meta"><time datetime="2020-01-16T09:23:20+02:00">Thu Jan 16, 2020</time> by Alan Orth

See: https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/opengraph.html
See: https://github.com/alanorth/hugo-theme-bootstrap4-blog/pull/111
2020-03-22 11:09:27 +02:00
..
baseof.html Use Font Awesome SVGs via JavaScript 2020-01-27 18:17:35 +02:00
content.html layouts: Fix minor encoding issue with dates 2020-03-22 11:09:27 +02:00
list.html layouts: Fix more structured data escaping issues 2020-03-19 15:45:31 +02:00
single.html layouts: Fix minor encoding issue with dates 2020-03-22 11:09:27 +02:00
summary.html layouts: Fix minor encoding issue with dates 2020-03-22 11:09:27 +02:00
taxonomy.html Add taxonomy template 2018-04-19 18:08:48 +03:00