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

card.page.html « partials « layouts - github.com/qqhann/hugo-primer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c079b93a9dd23c7ed317b39889f6b6e9867e32c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- single page card -->
<div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-3">
  <div class="Subhead mb-2">
    <div class="Subhead-heading">
      <a href="{{ .URL }}">
        <div class="h2 mt-1 mb-1">{{ .Title }}</div>
      </a>
    </div>
    <div class="Subhead-description">
      {{ partial "taxonomy.html" . }}
      <div class="float-md-right">
        <span>{{ .Date.Format "2006-01-02" }}</span>
      </div>
    </div>
  </div>
  <div class="text-gray">
    <!-- summary -->
    {{ .Summary }}
    <a class="muted-link" href="{{ .URL }}">…</a>
  </div>
</div>