Browse Source

ajoute un template et du style

master
vince vince 2 years ago
parent
commit
14f701b1da
4 changed files with 5382 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +5
    -0
      index.md
  3. +5356
    -1
      style.css
  4. +20
    -0
      template.html

+ 1
- 1
README.md View File

@ -2,5 +2,5 @@ Projet git de la page d'accueil
Pour générer :
```
pandoc -f markdown index.md -o index.html -s -c style.css
pandoc --from markdown index.md --output index.html --standalone --template template.html
```

+ 5
- 0
index.md View File

@ -1 +1,6 @@
---
title: CAGULL
lang: fr
---
Bienvenue sur cagull.fr

+ 5356
- 1
style.css
File diff suppressed because it is too large
View File


+ 20
- 0
template.html View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>$title$</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
ici un header
</header>
<main>
$body$
</main>
<footer>
ici un footer
</footer>
</body>
</html>

Loading…
Cancel
Save