Initial website deployment
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s
This commit is contained in:
25
layouts/partials/page-list-section.html
Normal file
25
layouts/partials/page-list-section.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{{ with .pages }}
|
||||
<section class="home-section" id="{{ $.id }}" aria-labelledby="{{ $.id }}-heading">
|
||||
<h2 id="{{ $.id }}-heading">{{ $.title }}</h2>
|
||||
|
||||
<div class="item-list">
|
||||
{{ range .ByWeight }}
|
||||
<article class="item-row">
|
||||
<div class="item-year">{{ with .Date }}{{ .Format "2006" }}{{ end }}</div>
|
||||
<div>
|
||||
<a class="item-title" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{ with .Description }}<p class="row-summary">{{ . }}</p>{{ end }}
|
||||
{{ with .Params.status }}<div class="item-meta">{{ . }}</div>{{ end }}
|
||||
{{ with .Params.links }}
|
||||
<div class="item-links">
|
||||
{{ range . }}
|
||||
<a href="{{ .url }}">{{ .label }}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</article>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user