diff options
| author | Bradley Taunt <bt@btxx.org> | 2024-07-01 16:23:43 -0400 |
|---|---|---|
| committer | Bradley Taunt <bt@btxx.org> | 2024-07-01 16:23:43 -0400 |
| commit | 088c87bcb58be576308da503d4f11a68843c5013 (patch) | |
| tree | 4299b974a40b22fcc9d1d2df0a67810f1e61d50c /_layouts/all_posts.html | |
Initial new commit
Diffstat (limited to '_layouts/all_posts.html')
| -rw-r--r-- | _layouts/all_posts.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/_layouts/all_posts.html b/_layouts/all_posts.html new file mode 100644 index 0000000..182a2d0 --- /dev/null +++ b/_layouts/all_posts.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +<h1>{{ page.title }}</h1> + +{{ content }} + +{% for post in site.posts %} + <small>{{ post.date | date: "%B %-d, %Y" }}</small><br><a href="{{ post.url }}">{{ post.title }}</a><br><br> +{% endfor %} + |
