From 6557a8c5489c18c96bfe8720f0c7f89311d7cb66 Mon Sep 17 00:00:00 2001 From: GunBoat Diplomat Date: Sun, 23 Mar 2025 15:45:44 -0400 Subject: [PATCH 1/5] Update index.html Text description change to test automatic redeployment --- templates/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index a50432c28..c6ee300a9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -14,7 +14,9 @@
DigitalOcean Logo -

Welcome to your new Flask App!

+

Documentation for Digital's Flask App!

+

My sandbox for developing a Flask App redesign!

+

This application is an example of how to deploy a Flask Application to DigitalOcean's App From 9a025627236a3770b99cbbdd1d9e0efb49b89141 Mon Sep 17 00:00:00 2001 From: GunBoat Diplomat Date: Sun, 23 Mar 2025 19:11:44 -0400 Subject: [PATCH 2/5] Update app.py --- app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app.py b/app.py index ab4feb78b..b7199cce1 100644 --- a/app.py +++ b/app.py @@ -7,3 +7,7 @@ @app.route("/") def hello_world(): return render_template("index.html") + +@app.route("/tempate-creator") +def tempate-creator(): + return render_template("gen.html") From ab35155a50c9148335dd3f36281ea35a6b41154d Mon Sep 17 00:00:00 2001 From: GunBoat Diplomat Date: Sun, 23 Mar 2025 19:14:08 -0400 Subject: [PATCH 3/5] Create gen.html --- templates/gen.html | 1 + 1 file changed, 1 insertion(+) create mode 100644 templates/gen.html diff --git a/templates/gen.html b/templates/gen.html new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/templates/gen.html @@ -0,0 +1 @@ + From c722a2ab59debece65d8602e9523562a7f2b6d1f Mon Sep 17 00:00:00 2001 From: GunBoat Diplomat Date: Sun, 23 Mar 2025 19:17:47 -0400 Subject: [PATCH 4/5] Create base.html --- templates/base.html | 123 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 templates/base.html diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 000000000..34a3bb5a2 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,123 @@ + + + + + + 2 Rows, 2 Columns, A + + + + + + + + +

+ +
+
+ + {% block content %} {% endblock %} + +
+
+ + + + From 5b7147409925ee81cddeeaa0e52676e9050fa586 Mon Sep 17 00:00:00 2001 From: GunBoat Diplomat Date: Sun, 23 Mar 2025 19:19:09 -0400 Subject: [PATCH 5/5] Update gen.html --- templates/gen.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/gen.html b/templates/gen.html index 8b1378917..36325b05b 100644 --- a/templates/gen.html +++ b/templates/gen.html @@ -1 +1,8 @@ +{% extends "base.html" %} +{% block content %} +
+  Now is the time for all good men to come to the aid of their country.
+
+ +{% endblock %}