Personal-Site/layouts/shortcodes/linkCardList.html

11 lines
147 B
HTML
Raw Normal View History

2018-05-12 23:50:36 +00:00
{{ with .Get 0 }}
{{ $cardData := getJSON . }}
<div class="row">
{{ range $cardData }}
{{ partial "linkCard" . }}
{{ end }}
</div>
{{ end }}