Tyler Perkins
ba2776fe42
All checks were successful
continuous-integration/drone/push Build is passing
27 lines
1011 B
HTML
27 lines
1011 B
HTML
{{ define "main" }}
|
|
<div class="page-header">
|
|
<h1 data-value="Posts" class="typewriter scramble"></h1>
|
|
<p>Ideas, projects, and other musings.</p>
|
|
</div>
|
|
{{ range.Pages }}
|
|
<article style="margin-left: 10vw; margin-right: 10vw;">
|
|
<a href="{{ .Permalink }}">
|
|
{{ 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 }}
|
|
{{ end }}
|