hugo-PaperMod/layouts
Maciej Sawicki d6b2282582 templates: Fix series detection in opengraph
When inside front matter you specified series with spaces,
then the opengraph template wouldn't detect other articles,
because in `.Site.Taxonomies.series` they are stored by
urlized key.

Example:

```yaml
series:
    - My Series
```

```gohtml
{{/* in a template */}}
{{- $series := index .Site.Taxonomies.series$name }}

{{/* was resolved to */}}
{{- $series := index {'my-series': ...} "MySeries" }}
```

(cherry picked from commit d2d493ab5d6a054001a8448ea0de2949dac4b30e)
2020-12-16 18:07:59 +05:30
..
_default single: add support for custom taxonomy URLs (#125) 2020-12-11 11:28:09 +05:30
partials templates: Fix series detection in opengraph 2020-12-16 18:07:59 +05:30
shortcodes shortcodes: figure: don't use h4 tag in figure captions (#127) 2020-12-15 17:52:04 +05:30
404.html update 404 to match baseof 2020-07-22 17:29:51 +05:30
robots.txt layouts: use hugo.IsProduction 2020-12-13 20:19:25 +05:30