From ae00627e7c99fd21ce4ad8ec0692445f00a349b2 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sat, 7 Sep 2024 21:18:54 -0400 Subject: feat: basic markdown post to html page loading --- templates/post.html | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 templates/post.html (limited to 'templates/post.html') 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 @@ + + + +
+ {{ article|markdown }} +
+ + -- cgit v1.2.3 From 340a804e550cb5b733bd2e64e515e79740bb6338 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sat, 14 Sep 2024 11:22:54 -0400 Subject: feat: impl tutors/about/team view --- templates/post.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/post.html') diff --git a/templates/post.html b/templates/post.html index 57964e9..8346f16 100644 --- a/templates/post.html +++ b/templates/post.html @@ -2,7 +2,7 @@
- {{ article|markdown }} + {{ post.get_article()|markdown }}
-- cgit v1.2.3 From 18339f611fd17e1300593edd65adf7604a39ad72 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sat, 14 Sep 2024 20:54:44 -0400 Subject: feat: working rudimentary blog presentation --- templates/post.html | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'templates/post.html') diff --git a/templates/post.html b/templates/post.html index 8346f16..3155c7a 100644 --- a/templates/post.html +++ b/templates/post.html @@ -1,8 +1,13 @@ - - - -
+{% extends "base.html" %} + +{% block main %} + + +
+
{{ post.get_article()|markdown }} -
- - +
+ +{% endblock %} -- cgit v1.2.3