hugo/tpl/tplimpl/embedded/templates
Maciej Sawicki d2d493ab5d
tpl: 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
# in front matter
series:
    - My Series
```

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

{{/* was resolved to */}}
{{- $series := index {'my-series': ...} "MySeries" }}
```
2020-12-16 12:13:30 +01:00
..
_default Remove trailing whitespace and tabs from RSS templates 2020-08-12 09:25:16 +02:00
shortcodes tpl: Add title parameter to YouTube shortcode 2020-12-02 12:53:53 +01:00
alias.html Rework template handling for function and map lookups 2019-12-12 10:04:35 +01:00
disqus.html tpl/tplimpl: Replace deprecated .GetParam usage 2019-04-09 16:39:12 +02:00
google_analytics.html tpl/tmplimpl: Add MIME type to embedded JS 2018-08-06 23:11:53 +02:00
google_analytics_async.html tpl/tmplimpl: Add MIME type to embedded JS 2018-08-06 23:11:53 +02:00
google_news.html tpl: Set permission of embedded templates to 0644 2018-07-09 12:57:08 -06:00
opengraph.html tpl: Fix series detection in opengraph 2020-12-16 12:13:30 +01:00
pagination.html embedded: Always show page number when 5 pages or less 2020-10-16 16:16:49 +02:00
schema.html Fix date format in internal schema template 2020-07-23 15:57:20 +02:00
twitter_cards.html tpl/tplimpl: Add support for featured and global image to OpenGraph template 2019-11-26 20:11:53 +01:00