github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/docs/themes/hugo-geekdoc/layouts/_default/taxonomy.html (about)

     1  {{ define "main" }}
     2    {{ range .Paginator.Pages }}
     3      <article class="gdoc-post">
     4        <header class="gdoc-post__header">
     5          <h1 class="gdoc-post__title">
     6            <a href="{{ .RelPermalink }}">{{ partial "utils/title" . }}</a>
     7          </h1>
     8        </header>
     9  
    10        <section class="gdoc-markdown">
    11          {{ .Summary }}
    12        </section>
    13  
    14        <div class="gdoc-post__readmore">
    15          {{ if .Truncated }}
    16            <a
    17              class="flex-inline align-center fake-link"
    18              title="{{ i18n "posts_read_more" }}"
    19              href="{{ .RelPermalink }}"
    20            >
    21              {{ i18n "posts_read_more" }}
    22              <i class="gdoc-icon">gdoc_arrow_right_alt</i>
    23            </a>
    24          {{ end }}
    25        </div>
    26  
    27        <footer class="gdoc-post__footer">
    28          <div class="flex flex-wrap align-center gdoc-post__meta">
    29            {{ partial "posts/metadata.html" . }}
    30          </div>
    31        </footer>
    32      </article>
    33    {{ end }}
    34    {{ partial "pagination.html" . }}
    35  {{ end }}
    36  
    37  {{ define "post-tag" }}
    38    <span class="gdoc-post__tag">
    39      <span class="gdoc-button">
    40        <a
    41          class="gdoc-button__link"
    42          href="{{ .page.RelPermalink }}"
    43          title="{{ i18n "posts_tagged_with" .name }}"
    44        >
    45          {{ .name }}
    46        </a>
    47      </span>
    48    </span>
    49  {{ end }}