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

get-summary.html « utils « partials « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 367075b51deec1b96cc1b01f8c47fc79cae693a2 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
<div class="prose">
  <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 }}

  {{ if eq .Type "docs" }}
    <div class="mx-6">
      {{ range $index, $value := first 3 .Pages }}
        {{ if gt $index 0 }}
          <div class="-mx-4 my-4 border-t"></div>
        {{ end -}}
        <a href="{{ .Permalink }}" class="no-underline">
          <h4>{{ .LinkTitle }}</h4>
        </a>
        {{ if .Description }}
          {{ .Description | plainify | htmlUnescape }}
        {{ else if .Summary }}
          {{ .Summary | plainify | htmlUnescape }}
        {{ end }}
      {{ end }}
      <a href="{{ .Permalink }}" class="no-underline">
        <h4>
          {{ i18n "readMore" }}
          <i
            class="fas {{ cond (eq .Site.Language.LanguageDirection "rtl") "fa-caret-left" "fa-caret-right" }} ms-1"
          ></i>
        </h4>
      </a>
    </div>
  {{ else }}
    {{ partial "components/post-metadata" . }}
  {{ end }}
</div>