mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tpl: Rename err-missing-instagram-accesstoken => error-missing-instagram-accesstoken
To get it in line with the other.
This commit is contained in:
parent
3aa7f0b27f
commit
9096842b04
3 changed files with 4 additions and 4 deletions
4
tpl/tplimpl/embedded/templates.autogen.go
generated
4
tpl/tplimpl/embedded/templates.autogen.go
generated
|
@ -500,7 +500,7 @@ if (!doNotTrack) {
|
|||
{{- if not $pc.Disable -}}
|
||||
{{ $accessToken := site.Config.Services.Instagram.AccessToken }}
|
||||
{{- if not $accessToken -}}
|
||||
{{- erroridf "err-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- erroridf "error-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- else -}}
|
||||
{{- if $pc.Simple -}}
|
||||
{{ template "_internal/shortcodes/instagram_simple.html" . }}
|
||||
|
@ -519,7 +519,7 @@ if (!doNotTrack) {
|
|||
{{- if not $pc.Disable -}}
|
||||
{{ $accessToken := site.Config.Services.Instagram.AccessToken }}
|
||||
{{- if not $accessToken -}}
|
||||
{{- erroridf "err-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- erroridf "error-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- else -}}
|
||||
{{- $id := .Get 0 -}}
|
||||
{{- $headers := dict "Authorization" (printf "Bearer %s" $accessToken) -}}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{{- if not $pc.Disable -}}
|
||||
{{ $accessToken := site.Config.Services.Instagram.AccessToken }}
|
||||
{{- if not $accessToken -}}
|
||||
{{- erroridf "err-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- erroridf "error-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- else -}}
|
||||
{{- if $pc.Simple -}}
|
||||
{{ template "_internal/shortcodes/instagram_simple.html" . }}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{{- if not $pc.Disable -}}
|
||||
{{ $accessToken := site.Config.Services.Instagram.AccessToken }}
|
||||
{{- if not $accessToken -}}
|
||||
{{- erroridf "err-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- erroridf "error-missing-instagram-accesstoken" "instagram shortcode: Missing config value for services.instagram.accessToken. This can be set in config.toml, but it is recommended to configure this via the HUGO_SERVICES_INSTAGRAM_ACCESSTOKEN OS environment variable. If you are using a Client Access Token, remember that you must combine it with your App ID using a pipe symbol (<APPID>|<CLIENTTOKEN>) otherwise the request will fail." -}}
|
||||
{{- else -}}
|
||||
{{- $id := .Get 0 -}}
|
||||
{{- $headers := dict "Authorization" (printf "Bearer %s" $accessToken) -}}
|
||||
|
|
Loading…
Reference in a new issue