atualização

This commit is contained in:
2025-03-16 00:25:09 -03:00
parent 4ce2e160e9
commit d42352cda0
6 changed files with 44 additions and 0 deletions

Binary file not shown.

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask, render_template
app =Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == "__main__":
app.run(debug=True)

9
requirements.txt Normal file
View File

@@ -0,0 +1,9 @@
Click==7.0
Flask==1.1.2
Flask-SQLAlchemy==2.4.4
gunicorn==19.9.0
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
SQLAlchemy==1.3.22
Werkzeug==1.0.1

4
static/css/main.css Normal file
View File

@@ -0,0 +1,4 @@
body {
margin: 0;
font-family: sans-serif;
}

12
templates/base.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href=""
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>

9
templates/index.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends 'base.html'%}
{% block head %}
{% endblock %}
{% block body %}
<h1>Template</h1>
{% endblock %}