mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-26 02:14:47 +01:00
41 lines
2.4 KiB
HTML
41 lines
2.4 KiB
HTML
{{ template "widget-base.html" . }}
|
|
|
|
{{ define "widget-content" }}
|
|
<ul class="list list-gap-14 list-collapsible">
|
|
{{ range $i, $channel := .Channels }}
|
|
<li {{ if shouldCollapse $i $.CollapseAfter }}class="list-collapsible-item" style="--animation-delay: {{ itemAnimationDelay $i $.CollapseAfter }};"{{ end }}>
|
|
<div class="{{ if $channel.IsLive }}twitch-channel-live {{ end }}flex gap-10 items-start thumbnail-container">
|
|
<div class="twitch-channel-avatar-container">
|
|
{{ if $channel.Exists }}
|
|
<img class="twitch-channel-avatar thumbnail" src="{{ $channel.AvatarUrl }}" alt="" loading="lazy">
|
|
{{ else }}
|
|
<svg class="twitch-channel-avatar thumbnail" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z" />
|
|
</svg>
|
|
{{ end }}
|
|
</div>
|
|
<div class="shrink min-width-0">
|
|
<a href="https://twitch.tv/{{ $channel.Login }}" class="size-h3{{ if $channel.IsLive }} color-highlight{{ end }} block text-truncate" target="_blank" rel="noreferrer">{{ $channel.Name }}</a>
|
|
{{ if $channel.Exists }}
|
|
{{ if $channel.IsLive }}
|
|
<a class="text-truncate block" href="https://www.twitch.tv/directory/category/{{ $channel.CategorySlug }}" target="_blank" rel="noreferrer">{{ $channel.Category }}</a>
|
|
<ul class="list-horizontal-text">
|
|
<li title="{{ $channel.LiveSince | formatTime }}" {{ dynamicRelativeTimeAttrs $channel.LiveSince }}>{{ $channel.LiveSince | relativeTime }}</li>
|
|
<li>{{ $channel.ViewersCount | formatViewerCount }} viewers</li>
|
|
</ul>
|
|
{{ else }}
|
|
<div>Offline</div>
|
|
{{ end }}
|
|
{{ else }}
|
|
<div class="color-negative">Not found</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ if gt (len .Channels) $.CollapseAfter }}
|
|
<label class="list-collapsible-label"><input type="checkbox" autocomplete="off" class="list-collapsible-input"></label>
|
|
{{ end }}
|
|
{{ end }}
|