diff options
author | mms <michal@sapka.me> | 2023-12-05 23:07:58 +0100 |
---|---|---|
committer | mms <michal@sapka.me> | 2023-12-05 23:07:58 +0100 |
commit | ac180f2d20bc811b662b55b7b0da62a8a42d7d40 (patch) | |
tree | 5113fd1f0dfd310b5a13f2b478a0997020d836c9 /layouts/partials/article_list_full_item.html | |
parent | 1da8a6b4f0983ec7ba45c5dd705feccf69896e58 (diff) |
chore: general tidy yp
Diffstat (limited to 'layouts/partials/article_list_full_item.html')
-rw-r--r-- | layouts/partials/article_list_full_item.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/partials/article_list_full_item.html b/layouts/partials/article_list_full_item.html new file mode 100644 index 0000000..31ab76f --- /dev/null +++ b/layouts/partials/article_list_full_item.html @@ -0,0 +1,13 @@ +<article class="blog-post-item"> + <h2> <a href="{{ .Page.Permalink }}"> {{ .Title }}</a></h2> + + <time datetime="{{.PublishDate.Format "2006-01-02" }}"> + {{ .PublishDate.Format "January 2, 2006" }} + </time> + + <nav> + <a href="{{ .Page.Permalink }}">[ Permalink ]</a> + </nav> + + {{ .Page.Content }} +</article> |