website/layouts/index.html

23 lines
753 B
HTML
Raw Normal View History

2022-12-27 00:48:42 -07:00
{{ partial "head.html" . }}
<h3>My Newest Project</h3>
<hr>
{{ range first 1 (where (where .Site.RegularPages "Section" "projects") "Params.nohtml" "!=" "true") }}
2022-12-27 00:48:42 -07:00
<div class="list p-3 rounded-3">
<img src="/{{ .Params.icon }}">
2022-12-31 18:49:02 -07:00
<a href="{{.RelPermalink}}">{{.Title}}</a>
<p>{{ .Params.description }}</p>
<span>Started {{ .Date.Format "January 2, 2006" }}</span>
2022-12-27 00:48:42 -07:00
</div>
<br>
2022-12-27 00:48:42 -07:00
{{ end }}
<h3>Recent Blog Posts</h3>
<hr>
{{ range first 4 (where (where .Site.RegularPages "Section" "blog") "Params.nohtml" "!=" "true") }}
<div class="list p-3 rounded-3">
2022-12-31 18:49:02 -07:00
<a href="{{.RelPermalink}}">{{.Title}}</a>
<span><br>{{.Date.Format "January 2, 2006"}}</span>
</div>
2022-12-27 00:48:42 -07:00
{{ end }}
<a href="/blog" style="float: right;">View all posts -&gt;</a>
2022-12-27 00:48:42 -07:00
{{ partial "foot.html" . }}