diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 19:59:35 -0700 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 19:59:35 -0700 |
commit | 7323b01e42d573c12818f48e4b00ed8ff7736565 (patch) | |
tree | 0432e898678b1a8f6ac162f05f1898c6b02a8e79 /layouts/blog | |
parent | 6ba510878f9f5e333e511e300d1bf20d0310d633 (diff) | |
download | website-7323b01e42d573c12818f48e4b00ed8ff7736565.tar website-7323b01e42d573c12818f48e4b00ed8ff7736565.tar.gz website-7323b01e42d573c12818f48e4b00ed8ff7736565.tar.bz2 |
added contact page, blog list, redid homepage
Diffstat (limited to 'layouts/blog')
-rw-r--r-- | layouts/blog/list.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/layouts/blog/list.html b/layouts/blog/list.html new file mode 100644 index 0000000..345b5f9 --- /dev/null +++ b/layouts/blog/list.html @@ -0,0 +1,10 @@ +{{ partial "head.html" . }} +<h1>My Blogs</h1> +<hr> +{{ range (where (where .Site.RegularPages "Section" "blog") "Params.nohtml" "!=" "true") }} +<div class="list p-3 rounded-3"> +<a href="{{.Permalink}}">{{.Title}}</a> +<span><br>{{.Date.Format "January 2, 2006"}}</span> +</div> +{{ end }} +{{ partial "foot.html" . }} |