summaryrefslogtreecommitdiff
path: root/views/partials/catalogue-blog-cards.html
blob: 041f3c86341ac31baaed97e32ec274846753fce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{- range .BlogPages }}
<hr class="first-of-type:hidden border-t-1 mx-auto">
<div class="m-1 flex flex-row justify-center justify-items-center">
    <img onclick="changeUrl('{{ .ArticleLink }}');" class="cursor-pointer object-cover rounded-lg select-none w-24 h-24 aspect-square my-2.5 mr-2" src="https://f003.backblazeb2.com/file/sayana-photos/webp-320p/{{ .Thumbnail }}.webp">
    <div class="grow my-0.5 mx-1 flex flex-col justify-center">
        <div class="flex flex-row gap-2 max-w-[100%]">
            <a onclick="changeUrl('{{ .ArticleLink }}');" class="grow text-base cursor-pointer">
                <span class="font-extrabold">{{ .Title }}</span>
                <span class="font-extrabold select-none text-secondary">//</span>
                <span class="italic text-secondary">{{ .ActionDate }}</span>
            </a>
            <p class="basis-56 text-base italic text-secondary text-right">{{ .PublishedTime }}</p>
        </div>
        <p class="text-base text-main-dark">{{ .ShortDescription }}</p>
        <p class="text-base text-secondary italic">
            <i class="fas fa-thumbs-up w-4 h-4"></i>
            <span>{{ .LikeCount }}</span>
            <span class="font-extrabold select-none">//</span>
            <i class="fas fa-eye w-4 h-4"></i>
            <span>{{ .ViewCount }}</span>
        </p>
        <p class="text-base text-secondary">{{ $.L.TagsLabel }} {{ template "catalogue-blog-card-tags.html" . }}</p>
    </div>
</div>
{{- end }}