diff --git a/app.py b/app.py new file mode 100644 index 0000000..0e9a06d --- /dev/null +++ b/app.py @@ -0,0 +1,18 @@ +from flask import Flask, render_template + +app = Flask(__name__) + +@app.route("/") +def home(): + return render_template("home.html") + +@app.route("/impressum") +def impressum(): + return render_template("impressum.html") + +@app.route("/kontakt") +def kontakt(): + return render_template("kontakt.html") + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000) \ No newline at end of file diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..a500a6b --- /dev/null +++ b/templates/base.html @@ -0,0 +1,18 @@ + + +
+ +Herzlich willkommen bei Hebamme Krystyna.
+{% endblock %} \ No newline at end of file diff --git a/templates/impressum.html b/templates/impressum.html new file mode 100644 index 0000000..5ff54c4 --- /dev/null +++ b/templates/impressum.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block content %} +Herzlich willkommen bei Hebamme Krystyna.
+{% endblock %} \ No newline at end of file diff --git a/templates/kontakt.html b/templates/kontakt.html new file mode 100644 index 0000000..5b8a6e1 --- /dev/null +++ b/templates/kontakt.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block content %} +Email: info@hebammekrystyna.de
+{% endblock %} \ No newline at end of file