hugo-PaperMod/layouts/partials/templates
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
..
opengraph.html templates: Fix series detection in opengraph 2020-12-16 18:07:59 +05:30
schema_json.html Remove whitespace around urls wherever applicable 2020-12-13 16:56:41 +05:30
twitter_cards.html templates: social-meta: prefer cover image over other images 2020-10-12 17:26:45 +05:30