From d42352cda0f3999a8d43b502df9e06e87588b1c8 Mon Sep 17 00:00:00 2001 From: robertorincos Date: Sun, 16 Mar 2025 00:25:09 -0300 Subject: [PATCH] =?UTF-8?q?atualiza=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __pycache__/app.cpython-313.pyc | Bin 0 -> 180 bytes app.py | 10 ++++++++++ requirements.txt | 9 +++++++++ static/css/main.css | 4 ++++ templates/base.html | 12 ++++++++++++ templates/index.html | 9 +++++++++ 6 files changed, 44 insertions(+) create mode 100644 __pycache__/app.cpython-313.pyc create mode 100644 app.py create mode 100644 requirements.txt create mode 100644 static/css/main.css create mode 100644 templates/base.html create mode 100644 templates/index.html diff --git a/__pycache__/app.cpython-313.pyc b/__pycache__/app.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..951366859e59989629e0e47c30b595ecdb8866d0 GIT binary patch literal 180 zcmey&%ge<81k*&Xrb`0p#~=<2FhLog1%QmH48aV+jNS}hj75wJ4Czdo%r8OGnvAzt z-EtC(v;8!gZn36;SVhc0@s$jpLDIK$ovmU*i&Kk=W1RAnVqEf*OLJ56N{VB`Q + + + + + + + {% block body %}{% endblock %} + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..1c3ee38 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,9 @@ +{% extends 'base.html'%} + +{% block head %} + +{% endblock %} + +{% block body %} +

Template

+{% endblock %} \ No newline at end of file