Welcome to mirror list, hosted at ThFree Co, Russian Federation.

summary-masonry.html « components « partials « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9186cdca135b0b749bc8c8702d1587d352dd4a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div
  class="bg-secondary-bg dark:border-tertiary-bg overflow-hidden rounded border transition duration-200 ease-in-out hover:shadow-lg"
>
  {{ $featured := partial "utils/get-featured" . }}
  {{ with $featured }}
    {{ . }}
  {{ end }}
  <div class="prose max-w-none px-6 pt-6 pb-4">
    <a href="{{ .Permalink }}" class="no-underline">
      <h3 class="mt-0">{{ .LinkTitle }}</h3>
    </a>
    {{ if .Description }}
      {{ .Description | plainify | htmlUnescape }}
    {{ else if .Summary }}
      {{ .Summary | plainify | htmlUnescape }}
    {{ end }}
    {{ partial "components/post-metadata" . }}
  </div>
</div>