From 37b6c927620cb68e01345d29daca960faeb80cb9 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sun, 18 May 2025 10:44:04 -0400 Subject: chore: rename jinja templates Also wrap style block so auto formatter doesn't pick it up and wreck CSS. --- templates/brochure/brochure.html | 37 ------------------------------------- templates/brochure/brochure.html.j2 | 37 +++++++++++++++++++++++++++++++++++++ templates/brochure/index.html | 34 ---------------------------------- templates/brochure/index.html.j2 | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 71 insertions(+), 71 deletions(-) delete mode 100644 templates/brochure/brochure.html create mode 100644 templates/brochure/brochure.html.j2 delete mode 100644 templates/brochure/index.html create mode 100644 templates/brochure/index.html.j2 (limited to 'templates/brochure') diff --git a/templates/brochure/brochure.html b/templates/brochure/brochure.html deleted file mode 100644 index b5a3cd3..0000000 --- a/templates/brochure/brochure.html +++ /dev/null @@ -1,37 +0,0 @@ - - - -
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
diff --git a/templates/brochure/brochure.html.j2 b/templates/brochure/brochure.html.j2 new file mode 100644 index 0000000..b5a3cd3 --- /dev/null +++ b/templates/brochure/brochure.html.j2 @@ -0,0 +1,37 @@ + + + +
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
diff --git a/templates/brochure/index.html b/templates/brochure/index.html deleted file mode 100644 index 6304887..0000000 --- a/templates/brochure/index.html +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "base.html" %} - -{% block style %} -{% include "../styles.css" %} -{% include "brochure.css" %} -{% endblock %} - -{% block main %} - - -
- - -

- Click on pages to fold and unfold and use Flip to toggle front and back. This works best on a tablet or - desktop screen. -

- - {% include "brochure.html" %} - -
- -
- - - -{% endblock %} \ No newline at end of file diff --git a/templates/brochure/index.html.j2 b/templates/brochure/index.html.j2 new file mode 100644 index 0000000..547f9d7 --- /dev/null +++ b/templates/brochure/index.html.j2 @@ -0,0 +1,34 @@ +{% extends "base.html.j2" %} + +{% block style %} +{% include "../styles.css" %} +{% include "brochure.css" %} +{% endblock %} + +{% block main %} + + +
+ + +

+ Click on pages to fold and unfold and use Flip to toggle front and back. This works best on a tablet or + desktop screen. +

+ + {% include "brochure.html.j2" %} + +
+ +
+ + + +{% endblock %} \ No newline at end of file -- cgit v1.2.3