Files
PixivFE/assets/views/artwork.jet.html
T
2024-09-06 16:22:35 +00:00

58 lines
2.0 KiB
HTML

{{- extends "layout/default" }}
{{- block body() }}
<div class="container illust" id="checkpoint">
{{- include "fragments/artwork" .Illust }}
<div class="illust-other-works">
<div class="artwork-container-header">
<a class="illust-other-works-author" href="/users/{{ .Illust.User.ID }}"><img src="{{ .Illust.User.Avatar }}"
alt="{{ .Illust.User.Name }}" /> Other works by {{ .Illust.User.Name }}
<span class="special-symbol">&raquo;</span>
</a>
{{- combinedUrl := "/artworks-multi/" + joinArtworkIds(.Illust.RecentWorks) }}
<div class="artwork-actions"><a href="{{combinedUrl}}">View all</a></div>
</div>
<div class="artwork-container-scroll">
{{- range .Illust.RecentWorks }}
<div class="artwork-small artwork">
{{- include "fragments/thumbnail-dt" . }}
</div>
{{- end }}
</div>
</div>
<hr />
<details>
<summary>Comments</summary>
{{- if .Illust.CommentDisabled == 1 }}
<p>The creator turned comments off</p>
{{- else if .Illust.Comments == 0 }}
<p>There are no comments yet</p>
{{- else }} {{ range .Illust.CommentsList }}
<div class="comment">
<a href="/users/{{ .AuthorID }}" class="comment-author">
<img class="comment-avatar" src="{{ .Avatar }}" alt="{{ .AuthorName }}" />
</a>
<div class="comment-context">
<a href="/users/{{ .AuthorID }}" class="comment-author">
{{- .AuthorName }}
</a>
<p>
{{- if .Stamp }}
<img class="stamp" src="/proxy/s.pximg.net/common/images/stamp/generated-stamps/{{ .Stamp }}_s.jpg"
alt="/proxy/s.pximg.net/common/images/stamp/generated-stamps/{{ .Stamp }}_s.jpg" />
{{- else }} {{ raw: parseEmojis(.Context) }} {{ end }}
</p>
<small>{{ .Date }}</small>
</div>
</div>
{{- end }} {{ end }}
</details>
</div>
<div class="container">
<h2>Related works</h2>
<div class="artwork-container">
{{- include "fragments/small-tn" .Illust.RelatedWorks }}
</div>
</div>
{{- end }}