moved templates directory
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 31s

This commit is contained in:
Seaswimmer 2023-10-23 12:22:51 -04:00
parent 1ac2797d72
commit c6d31f79ce
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
from flask import Flask, render_template
from config import load_config
app = Flask(__name__)
app = Flask(__name__, template_folder="../templates")
config = load_config()
@app.route("/")

View file

@ -6,7 +6,7 @@
<title>{{ name }}</title>
<style>
body {
background-color: #36393f; /* Dark grey color similar to Discord background */
background-color: #36393f;
display: flex;
justify-content: center;
align-items: center;
@ -15,7 +15,7 @@
}
h1 {
color: #ffffff; /* White text color */
color: #ffffff;
font-size: 36px;
text-align: center;
}