the very basics

This commit is contained in:
Lynne Megido 2020-04-12 18:20:44 +10:00
parent 075b22d411
commit b44d3be2e9
6 changed files with 36 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"python.pythonPath": "/mnt/code/web/pecha.red/venv/bin/python3.8"
}

7
app.py Executable file
View File

@ -0,0 +1,7 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def render_home():
return render_template("home.html")

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
Flask==1.1.2

3
static/style.css Normal file
View File

@ -0,0 +1,3 @@
body {
margin: 0;
}

17
templates/base.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %} - pecha.red</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- <link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free.min.css"> -->
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap"> -->
<!-- <script src="{{ url_for('static', filename='script.js') }}"></script> -->
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>

5
templates/home.html Normal file
View File

@ -0,0 +1,5 @@
{% extends 'base.html' %}
{% block title %}home{% endblock %}
{% block content %}
<h1>PECHA.RED</h1>
{% endblock %}