hugo/tpl
Bjørn Erik Pedersen 22ef5da20d
Add resources.GetRemote
In Hugo 0.89 we added remote support to `resources.Get`.

In hindsight that was not a great idea, as a poll from many Hugo users showed. See Issue #9285 for more details.

After this commit `resources.Get` only supports local resource lookups. If you want to support both, you need to use a construct similar to:

Also improve some option case handling.

```
{{ resource := "" }}
{{ if (urls.Parse $url).IsAbs }}
{{ $resource = resources.GetRemote $url }}
{{ else }}
{{ $resource = resources.Get $url }}
{{ end }}
```

Fixes #9285
Fixes #9296
2021-12-17 09:33:51 +01:00
..
cast
collections Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
compare
crypto
data Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
debug
encoding
fmt
hugo
images
inflect
internal Add resources.GetRemote 2021-12-17 09:33:51 +01:00
js
lang Fix description of lang.FormatNumberCustom 2021-11-01 18:54:43 +01:00
math
openapi/openapi3
os Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
partials Allow for return partials with falsy arguments (#9298) 2021-12-17 08:35:21 +01:00
path
reflect
resources Add resources.GetRemote 2021-12-17 09:33:51 +01:00
safe
site
strings
templates
time tpl/time: Use configured location when date passed to Format is string 2021-10-30 16:09:38 +02:00
tplimpl Allow for return partials with falsy arguments (#9298) 2021-12-17 08:35:21 +01:00
transform Add some basic security policies with sensible defaults 2021-12-16 09:40:22 +01:00
urls
template.go
template_info.go
template_test.go