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