aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/section.html
blob: 889c15861f0689a20ad436e14e148ac8e23dd4dd (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-article>
				{{ range where .Paginator.Pages ".Params.hidden" "ne" "true" }}
          {{ .Render "summary" }}
				{{ end }}
        </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 }}