Skip to content

Commit 2f4e666

Browse files
authored
tpl: HTTPS the instagram Shortcode JS
This JavaScript will always load over HTTPS so it's best to specify that. Protocol-less loaded resources are an anti-pattern (REF: https://www.paulirish.com/2010/the-protocol-relative-url/)
1 parent 1a4851f commit 2f4e666

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎tpl/tplimpl/embedded/templates/shortcodes/instagram.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,6 @@
239239
</div>
240240
</blockquote>
241241
{{- if not .pc.Simple -}}
242-
<script async src="//www.instagram.com/embed.js"></script>
242+
<script async src="https://www.instagram.com/embed.js"></script>
243243
{{- end -}}
244244
{{- end -}}

‎tpl/tplimpl/shortcodes_integration_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Content: {{ .Content }}
256256

257257
// Regular mode
258258
b := hugolib.Test(t, files)
259-
b.AssertFileContent("public/index.html", "a7937c49665872d3")
259+
b.AssertFileContent("public/index.html", "6e93404b93277876")
260260

261261
// Simple mode
262262
files = strings.ReplaceAll(files, "privacy.instagram.simple = false", "privacy.instagram.simple = true")

0 commit comments

Comments
 (0)