mirror of
https://github.com/Fare-spec/cours.git
synced 2025-12-09 11:30:38 +00:00
Add university content
This commit is contained in:
1
high-school/Partie2/Eleve/Projet/__init__.py
Normal file
1
high-school/Partie2/Eleve/Projet/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from .control import app
|
||||
8
high-school/Partie2/Eleve/Projet/control.py
Normal file
8
high-school/Partie2/Eleve/Projet/control.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from flask import Flask, render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route("/")
|
||||
def index():
|
||||
return render_template("index.html")
|
||||
13
high-school/Partie2/Eleve/Projet/index.html
Normal file
13
high-school/Partie2/Eleve/Projet/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" type="text/css" href="{{url_for('static',filename='CSS/style.css')}}">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Bonjour</p>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
13
high-school/Partie2/Eleve/Projet/templates/index.html
Normal file
13
high-school/Partie2/Eleve/Projet/templates/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" type="text/css" href="{{url_for('static',filename='CSS/style.css')}}">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Bonjour</p>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user