format
This commit is contained in:
parent
7b844d40af
commit
fd0fb97e48
3 changed files with 23 additions and 22 deletions
|
@ -1,6 +1,9 @@
|
||||||
# Sand
|
# Sand
|
||||||
|
|
||||||
## Exécution
|
## Exécution
|
||||||
|
|
||||||
Préparation de l'environnement
|
Préparation de l'environnement
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ python3 -m venv .
|
$ python3 -m venv .
|
||||||
$ source bin/activate
|
$ source bin/activate
|
||||||
|
@ -8,6 +11,7 @@ $ pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
Lancement
|
Lancement
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ python3 -m flask --app src/app.py run
|
$ python3 -m flask --app src/app.py run
|
||||||
```
|
```
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
header>.text-title {
|
header > .text-title {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +1,25 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>{{ name }} - Index</title>
|
||||||
|
|
||||||
<head>
|
<link rel="stylesheet" href="../styles/style.css" />
|
||||||
<meta charset="UTF-8">
|
</head>
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>{{ name }} - Index</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../styles/style.css">
|
<body>
|
||||||
</head>
|
<header class="text-center">
|
||||||
|
<h1 class="text-title">Sand</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
<body>
|
<main>
|
||||||
<header class="text-center">
|
<p>placeholder-main</p>
|
||||||
<h1 class="text-title">Sand</h1>
|
</main>
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<p>placeholder-main</p>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<p>placeholder-footer</p>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>placeholder-footer</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Reference in a new issue