diff options
| author | Sakamoto <me@sakamoto.network> | 2025-12-05 17:14:05 -0600 |
|---|---|---|
| committer | Sakamoto <me@sakamoto.network> | 2025-12-05 17:14:05 -0600 |
| commit | 35f13c2d308e7a077787af5cb5d4f03ca3d507ce (patch) | |
| tree | 8ccb136d8708f502bc2c8c46f8c9231b54be6309 /templates/blog-page.html | |
| download | sakamoto.network-35f13c2d308e7a077787af5cb5d4f03ca3d507ce.tar.xz sakamoto.network-35f13c2d308e7a077787af5cb5d4f03ca3d507ce.zip | |
init
smolweb compliant
Diffstat (limited to 'templates/blog-page.html')
| -rw-r--r-- | templates/blog-page.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..3b02091 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} {% block title %} {{ page.title }} {% endblock title +%} {% block content %} + +<h1>{{ page.title }}</h1> + +<strong + ><time datetime="{{ page.date }}" + >{{ page.date | date(format="%b %d, %Y") }}</time + ></strong +> + +{{ page.content | safe }} {% endblock content %} |
