17 lines
419 B
HTML
17 lines
419 B
HTML
{{ $url := "https://appletune.fundor333.com/api/blogrollgroup/?format=json" }}
|
|
|
|
{{ with resources.GetRemote $url }}
|
|
{{- $content := .Content | transform.Unmarshal -}}
|
|
|
|
{{- range $content -}}
|
|
<h2>{{ .name }}</h2>
|
|
<ul class="h-entry">
|
|
{{- range .rows }}
|
|
<li><a class="u-bookmark-of" href='{{.url}}'>{{.name}}</a> {{ with .feed_url }} (<a href='{{ . }}'>feed</a>)</li> {{ end }}
|
|
|
|
{{ end}}
|
|
</ul>
|
|
{{ end }}
|
|
|
|
{{ end }}
|