17 lines
363 B
HTML
17 lines
363 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>
|
|
{{- range .rows }}
|
|
<li><a href='{{.url}}'>{{.name}}</a> (<a href='{{.feed_url}}'>feed</a>)</li>
|
|
{{ end}}
|
|
</ul>
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|