diff options
author | Adam T. Carpenter <atc@53hor.net> | 2024-09-07 21:18:54 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2024-09-07 21:18:54 -0400 |
commit | ae00627e7c99fd21ce4ad8ec0692445f00a349b2 (patch) | |
tree | 9af9c980db9075fbc0e520443201d684a0a03832 /templates/post.html | |
parent | 4ae354f108acaef8c78b778124d4638904bd7c69 (diff) | |
download | carpentertutoring-ae00627e7c99fd21ce4ad8ec0692445f00a349b2.tar.xz carpentertutoring-ae00627e7c99fd21ce4ad8ec0692445f00a349b2.zip |
feat: basic markdown post to html page loading
Diffstat (limited to 'templates/post.html')
-rw-r--r-- | templates/post.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..57964e9 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html> + <body> + <article> + {{ article|markdown }} + </article> + </body> +</html> |