Failed to get JSON resource: error-remote-getjson
Hugo 啟動時無法載入 Twitter 及 Instagram Embed 的資源
<pre>
<!-- 列印 .Site -->
{{ printf "%#v" $.Site }}
<!-- 列印 .Permalink -->
{{ printf "%#v" .Permalink }}
<!-- 列印 . 全部變數 -->
{{ printf "%#v" . }}
</pre>
這裡的 .
指的是該變數的每一個數值的資料
{{ range .Pages }}
{{/* The context, ".", is now each one of the pages as it goes through the loop */}}
{{ printf "%#v" . }}
{{ end }}
<ul>
{{ range $index, $element := .Pages -}}
<li>{{ printf "%#v" $index }} : {{ printf "%#v" $element }}</li>
{{ end }}
</ul>
Hugo 啟動時無法載入 Twitter 及 Instagram Embed 的資源