aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/section.html
blob: adb5fbf87f045cadd764fe9493483f5d4fac44aa (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
{{ 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">
        <br>
        <span class="marginnote rightnote">
          See an archive of all {{ .Type }} <a href="{{ partial "archive-link.html" . }}">here.</a>
        </span>
        <recent-articles>
          {{ range where .Paginator.Pages ".Params.hidden" "ne" "true" }}
            {{ .Render "summary" }}
          {{ end }}
        </recent-articles>
        </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 }}