From f2bd378e1a8cdfa7d1520b3734a748dd1cd9de25 Mon Sep 17 00:00:00 2001
From: "Adam T. Carpenter"
Date: Sat, 7 Sep 2024 22:39:41 -0400
Subject: feat: serve static and assets add policies and index from base
---
templates/posts.html | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 templates/posts.html
(limited to 'templates/posts.html')
diff --git a/templates/posts.html b/templates/posts.html
new file mode 100644
index 0000000..9f522a6
--- /dev/null
+++ b/templates/posts.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+
+{% block main %}
+
+
+
+ {% for title in post_titles %}
+ - {{ title }}
+ {% endfor %}
+
+
+
+{% endblock %}
--
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/posts.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'templates/posts.html')
diff --git a/templates/posts.html b/templates/posts.html
index 9f522a6..57d2480 100644
--- a/templates/posts.html
+++ b/templates/posts.html
@@ -4,8 +4,8 @@
- {% for title in post_titles %}
- - {{ title }}
+ {% for post in posts %}
+ - {{ post.get_title() }}
{% endfor %}
--
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/posts.html | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
(limited to 'templates/posts.html')
diff --git a/templates/posts.html b/templates/posts.html
index 57d2480..0cb4cf1 100644
--- a/templates/posts.html
+++ b/templates/posts.html
@@ -1,13 +1,15 @@
{% extends "base.html" %}
{% block main %}
+
+
-
- {% for post in posts %}
- - {{ post.get_title() }}
- {% endfor %}
-
+ {% for post in posts %}
+
+ {% endfor %}
{% endblock %}
--
cgit v1.2.3
From d85d3b410c038322f155319a2fd5941d15b0e886 Mon Sep 17 00:00:00 2001
From: "Adam T. Carpenter"
Date: Sat, 14 Sep 2024 21:24:02 -0400
Subject: fix: odds and ends
---
templates/posts.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'templates/posts.html')
diff --git a/templates/posts.html b/templates/posts.html
index 0cb4cf1..052cd42 100644
--- a/templates/posts.html
+++ b/templates/posts.html
@@ -2,13 +2,13 @@
{% block main %}
{% for post in posts %}
-
+
{% endfor %}