35 lines
876 B
HTML
35 lines
876 B
HTML
<section id="gang">
|
|
<article class="section-headers">
|
|
<h2>Gung</h2>
|
|
<p>Ordinary people with extraordinary visions. <br />
|
|
Powerful. Syndicated. Artists.</p>
|
|
</article>
|
|
|
|
{{/* prebuild/layouts/index.html */}}
|
|
{{ $url := "https://s.basspistol.org/api/pinned-users" }}
|
|
{{ $opts := dict
|
|
"method" "post"
|
|
"body" `{"complete": true}`
|
|
"headers" (dict "Content-Type" "application/json")
|
|
}}
|
|
{{ with resources.GetRemote $url $opts }}
|
|
{{ $monsters := unmarshal .Content }}
|
|
{{ range $monsters }}
|
|
|
|
<article>
|
|
{{ if .url }}
|
|
<a href="{{ .url }}" target="_blank">
|
|
{{ else }}
|
|
<a href="https://s.basspistol.org/@{{ .username }}" target="_blank">
|
|
{{ end }}
|
|
<figure>
|
|
<figcaption>{{ .username }}</figcaption>
|
|
<img src="{{ .avatarUrl }}" />
|
|
</figure>
|
|
</a>
|
|
</article>
|
|
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
</section>
|