mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-26 02:14:47 +01:00
18 lines
687 B
HTML
18 lines
687 B
HTML
{{ template "widget-base.html" . }}
|
|
|
|
{{ define "widget-content" }}
|
|
<ul class="list list-gap-14 collapsible-container" data-collapse-after="{{ .CollapseAfter }}">
|
|
{{ range .Items }}
|
|
<li>
|
|
<a class="size-title-dynamic color-primary-if-not-visited" href="{{ .Link }}" target="_blank" rel="noreferrer">{{ .Title }}</a>
|
|
<ul class="list-horizontal-text flex-nowrap">
|
|
<li {{ dynamicRelativeTimeAttrs .PublishedAt }}></li>
|
|
<li class="min-width-0">
|
|
<a class="block text-truncate" href="{{ .ChannelURL }}" target="_blank" rel="noreferrer">{{ .ChannelName }}</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|