diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2021-12-22 19:36:41 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2021-12-22 19:36:41 +0000 |
commit | f7243e089b88cbc113dc57a15f986083500004a7 (patch) | |
tree | ab4b2924072df61514e8e3a16b9998629fcdd132 /app.py | |
parent | 95a5c95842de869cfd7c8e9d1c824dc0780af949 (diff) | |
download | boymoder.blog-f7243e089b88cbc113dc57a15f986083500004a7.tar.gz boymoder.blog-f7243e089b88cbc113dc57a15f986083500004a7.zip |
fixed new template names in app
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -55,7 +55,7 @@ def index(): with database.Database() as db: with open(os.path.join("static", "index.md"), "r") as f: return flask.render_template( - "index.html", + "index.jinja", **get_template_items("eden's site :3", db), markdown = parser.parse_text(f.read()), featured_thoughts = db.get_featured_thoughts(), @@ -71,7 +71,7 @@ def robots(): def discord(): with database.Database() as db: return flask.render_template( - "discord.html", + "discord.jinja", **get_template_items("discord", db), discord = CONFIG["discord"]["username"] ) @@ -80,7 +80,7 @@ def discord(): def serve_services(): with database.Database() as db: return flask.render_template( - "services.html", + "services.jinja", **get_template_items("services", db), docker = services.get_docker_stats(), qbit = services.get_qbit_stats(), @@ -98,7 +98,7 @@ def get_thought(): flask.abort(404) return return flask.render_template_string( - '{% extends "template.html" %}\n{% block content %}\n' + parsed + '\n{% endblock %}', + '{% extends "template.jinja" %}\n{% block content %}\n' + parsed + '\n{% endblock %}', **get_template_items(title, db), thought = True, dt = "published: " + str(dt), @@ -119,7 +119,7 @@ def get_thoughts(): tree[category].append((id_, title, str(dt))) return flask.render_template( - "thoughts.html", + "thoughts.jinja", **get_template_items("thoughts", db), tree = tree ) @@ -153,7 +153,7 @@ def serve_nhdl(): except (KeyError, ValueError): return flask.render_template( - "nhdl.html", + "nhdl.jinja", **get_template_items("Hentai Downloader", db) ) @@ -185,7 +185,7 @@ def serve_random(): with database.Database() as db: return flask.render_template( - "random.html", + "random.jinja", **get_template_items("random image", db), sbi = sbi, localimg = "/img/random.jpg?seed=%i" % random.randint(0, 9999) @@ -197,7 +197,7 @@ def preview(): if "PREVIEW" in os.environ: with database.Database() as db: return flask.render_template_string( - '{% extends "template.html" %}\n{% block content %}\n' + os.environ["PREVIEW"] + '\n{% endblock %}', + '{% extends "template.jinja" %}\n{% block content %}\n' + os.environ["PREVIEW"] + '\n{% endblock %}', **get_template_items(os.environ["PREVIEW_TITLE"], db), thought = True, dt = "preview rendered: " + str(datetime.datetime.now()), |