aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/abstracts/section.html
blob: ce1ed6ebcd2470deb8e3cf1ab03ffe4831367e08 (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
{{ define "main" }}
<section class="section is-fullheight" itemscope itemtype="https://schema.org/AboutPage">
  <div class="container">
    <div class="columns is-centered">
      <div class="column is-7">
        <article class="content">
          <h1 class="title is-3">{{ .Type | title }}</h1>
          <span class="marginnote rightnote">
            See an archive of all {{ .Type }} <a href="{{ partial "archive-link.html" . }}">here.</a>
          </span>
          <recent-article>
            <div class="tile is-ancestor has-text-centered">
              {{ range where .Paginator.Pages ".Params.hidden" "ne" "true" }}
              {{ .Render "summary" }}
              {{ end }}
            </div>
          </recent-article>
        </article>
        {{ partial "pagination.html" . }}
        <br>
        <a href="{{ partial "archive-link.html" . }}" class="front__more is-block has-text-centered">
          <span>Archive of all {{ .Type }}</span> {{ safeHTML (readFile "public/css/icons/feather/corner-down-right.svg") }}
        </a>
      </div>
    </div>
  </div>
</section>
{{ end }}