From 3f04d3876706366113ebce632f4d5e80a06b6bad Mon Sep 17 00:00:00 2001 From: PYproger Date: Thu, 25 Dec 2025 13:05:28 +0200 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83=D1=80=D1=83=20=D1=84?= =?UTF-8?q?=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 0 models.py | 0 styles.css => static/css/styles.css | 0 templates/base.html | 35 ++++++++++++++++++++++++ beats.html => templates/beats.html | 0 contacts.html => templates/contacts.html | 0 index.html => templates/index.html | 0 login.html => templates/login.html | 0 signup.html => templates/signup.html | 0 9 files changed, 35 insertions(+) create mode 100644 app.py create mode 100644 models.py rename styles.css => static/css/styles.css (100%) create mode 100644 templates/base.html rename beats.html => templates/beats.html (100%) rename contacts.html => templates/contacts.html (100%) rename index.html => templates/index.html (100%) rename login.html => templates/login.html (100%) rename signup.html => templates/signup.html (100%) diff --git a/app.py b/app.py new file mode 100644 index 0000000..e69de29 diff --git a/models.py b/models.py new file mode 100644 index 0000000..e69de29 diff --git a/styles.css b/static/css/styles.css similarity index 100% rename from styles.css rename to static/css/styles.css diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..c6bbefd --- /dev/null +++ b/templates/base.html @@ -0,0 +1,35 @@ + + + + {% block title %}{% endblock %} - Leadlean Beats + + + +
+ + + {% with messages = get_flashed_messages() %} + {% if messages %} +
+ {% for message in messages %}{{ message }}{% endfor %} +
+ {% endif %} + {% endwith %} + + {% block content %}{% endblock %} +
+ + \ No newline at end of file diff --git a/beats.html b/templates/beats.html similarity index 100% rename from beats.html rename to templates/beats.html diff --git a/contacts.html b/templates/contacts.html similarity index 100% rename from contacts.html rename to templates/contacts.html diff --git a/index.html b/templates/index.html similarity index 100% rename from index.html rename to templates/index.html diff --git a/login.html b/templates/login.html similarity index 100% rename from login.html rename to templates/login.html diff --git a/signup.html b/templates/signup.html similarity index 100% rename from signup.html rename to templates/signup.html