mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-23 17:04:07 +01:00
13 lines
772 B
HTML
13 lines
772 B
HTML
{{ define "video-card-contents" }}
|
|
<img class="video-thumbnail thumbnail" loading="lazy" src="{{ .ThumbnailUrl }}" alt="">
|
|
<div class="margin-top-10 margin-bottom-widget flex flex-column grow padding-inline-widget">
|
|
<a class="video-title color-primary-if-not-visited" href="{{ .Url }}" target="_blank" rel="noreferrer" title="{{ .Title }}">{{ .Title }}</a>
|
|
<ul class="list-horizontal-text flex-nowrap margin-top-7">
|
|
<li class="shrink-0" title="{{ .TimePosted | formatTime }}" {{ dynamicRelativeTimeAttrs .TimePosted }}>{{ .TimePosted | relativeTime }}</li>
|
|
<li class="shrink min-width-0">
|
|
<a class="block text-truncate" href="{{ .AuthorUrl }}" target="_blank" rel="noreferrer">{{ .Author }}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|