-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path_quarto.yml
More file actions
executable file
·78 lines (71 loc) · 2.47 KB
/
_quarto.yml
File metadata and controls
executable file
·78 lines (71 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
var:
url-repo: https://github.com/LeCoinStat/Cours-de-Python # to call this value : {{< meta var.url-repo >}}
project:
type: website
website:
title: "Programmation en Python"
repo-url: "{{< meta var.url-repo >}}"
repo-branch: main
reader-mode: true
navbar:
background: "#447099"
left:
- icon: house
href: index.qmd
text: Home
- text: Cours
menu:
- href: doc/cours/intro.qmd
text: "Présentation du cours"
- href: doc/cours/introduction.qmd
text: "Les Fondamentaux de Python : Variables, Structures de contrôle"
- href: doc/cours/typedonnees.qmd
text: "Les types de données en Python"
- href: doc/cours/fonctionsmodules.qmd
text: "Fonctions, Modules et POO en Python"
- href: doc/cours/manipulationdonnees.qmd
text: "Manipulation des données avec Numpy"
- href: doc/cours/analysedonnees.qmd
text: "Analyse de données avec Pandas"
- href: doc/cours/dataviz.qmd
text: "Visualisation des Données avec Matplotlib et Seaborn"
- text: TP
menu:
- href: doc/tp/tp1.qmd
text: "TP1 - Premiers pas en Python"
- href: doc/tp/tp2.qmd
text: "TP2 - Fonctions, Modules et POO"
- href: doc/tp/tp3.qmd
text: "TP3 - Manipulation des données avec Numpy"
- href: doc/tp/tp4.qmd
text: "TP4 - Analyse de données avec Pandas"
- href: doc/tp/tp5.qmd
text: "TP5 - Visualisation des données avec Matplotlib et Seaborn"
- href: doc/tp/correctionsTP.qmd
text: "Correction des TP"
- href: doc/tp/correctionsTP.qmd
text: "Projets"
right:
- href: doc/glossaire.qmd
text: Glossaire
- icon: github
href: "{{< meta var.url-repo >}}"
target: "_blank"
page-footer:
right: |
Website built with [Quarto](https://quarto.org/){.external target="_blank"} <br>
[Code source]({{< meta var.url-repo >}}){.external target="_blank"}
execute:
freeze: auto # re-render only when source changes
enabled: false # Active l'exécution des notebooks
exclude:
- notebooks/*.ipynb # Exclut les fichiers .ipynb du rendu
- doc/tp/*.ipynb # Exclut les fichiers .ipynb du répertoire tp
format:
html:
theme:
dark: solar
light: cosmo
css: styles.css
revealjs:
css: styles-reveal.css