Skip to content

Instantly share code, notes, and snippets.

@AdeptSEO
Forked from miguelmota/index.html
Created April 29, 2022 04:46
Show Gist options
  • Save AdeptSEO/51e7708799de2114136d8c33953157d8 to your computer and use it in GitHub Desktop.
Save AdeptSEO/51e7708799de2114136d8c33953157d8 to your computer and use it in GitHub Desktop.
Hugo render from JSON file data
<!-- posts.json must be at root level -->
{{ $items := getJSON "posts.json" }}
{{ range $item := $items }}
<a href="{{ $item.url }}">{{ $item.name }}</a>
{{ end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment