mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
20 lines
555 B
HTML
20 lines
555 B
HTML
{{ range . }} {{ if .ID == "#" }}
|
|
<div class="artwork-small artwork">
|
|
<img src="{{ .Thumbnail }}" alt="{{ .Title }}" loading="lazy" />
|
|
<div class="artwork-title">
|
|
<a>{{ .Title }}</a>
|
|
</div>
|
|
<div class="artwork-author">
|
|
<a
|
|
><img src="{{ .Thumbnail }}" alt="{{ .ArtistName }}" loading="lazy" />
|
|
<span>{{ .ArtistName }}</span></a
|
|
>
|
|
</div>
|
|
</div>
|
|
{{ else if .ID }}
|
|
<div class="artwork-small artwork">
|
|
{{ include "thumbnail-dt" . }} {{ include "thumbnail-tt" . }} {{ include
|
|
"thumbnail-at" . }}
|
|
</div>
|
|
{{ end }} {{ end }}
|