2023-06-28 00:58:17 +00:00
|
|
|
{{ define "main" }}
|
2023-07-16 00:59:44 +00:00
|
|
|
<div class="page-header dashed-bottom">
|
2023-07-20 02:14:23 +00:00
|
|
|
<h1 data-value="Posts" class="typewriter scramble"></h1>
|
2023-07-16 00:59:44 +00:00
|
|
|
<p>Ideas, projects, and other musings.</p>
|
|
|
|
</div>
|
|
|
|
{{ range.Pages }}
|
|
|
|
<article class="light-dashed-bottom">
|
2023-07-18 03:17:11 +00:00
|
|
|
<a href="{{ .Permalink }}">
|
2023-07-16 00:59:44 +00:00
|
|
|
{{ if .Params.banner }}
|
|
|
|
<div class="post-list-body-container">
|
|
|
|
{{ else }}
|
|
|
|
<div class="post-list-body-container full-width">
|
|
|
|
{{ end }}
|
|
|
|
<h4 data-value="{{ .Title }}" id="{{ .Title | anchorize }}" class="post-list-title">{{ .Title }}</h4>
|
|
|
|
<small class="post-list-date">{{ .Date.Format "January 2, 2006" }}</small>
|
|
|
|
<p>{{ .Summary }}</p>
|
|
|
|
</div>
|
|
|
|
{{ if .Params.banner }}
|
|
|
|
<div class="post-list-image-container">
|
|
|
|
<img src="{{ .Params.banner }}" alt="{{ .Title }}" class="post-list-image" />
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
2023-06-28 00:58:17 +00:00
|
|
|
{{ end }}
|