From 5a960a885039bd9eea99a18c20843e1aabab26a1 Mon Sep 17 00:00:00 2001 From: Arnaud Charleroy <arnaud.charleroy@inrae.fr> Date: Wed, 22 May 2024 08:27:58 +0200 Subject: [PATCH 1/2] Update body layout to full --- membres.qmd | 4 ++++ projets.qmd | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/membres.qmd b/membres.qmd index 2e50334..b8b8660 100644 --- a/membres.qmd +++ b/membres.qmd @@ -1,6 +1,10 @@ --- title: "Membres" +format: + html: + page-layout: full --- +<!-- https://quarto.org/docs/output-formats/page-layout.html --> ```{r} #| echo: false diff --git a/projets.qmd b/projets.qmd index 077a36a..ea3ffd8 100644 --- a/projets.qmd +++ b/projets.qmd @@ -1,7 +1,10 @@ --- title: "Projets" +format: + html: + page-layout: full --- - +<!-- https://quarto.org/docs/output-formats/page-layout.html --> Projets portés par des membres du CATI CODEX: ```{r} -- GitLab From 08a21e49b2b032f32f6b431f01a1d3fafe3f6d72 Mon Sep 17 00:00:00 2001 From: Arnaud Charleroy <arnaud.charleroy@inrae.fr> Date: Wed, 22 May 2024 08:46:40 +0200 Subject: [PATCH 2/2] Update projects page --- .gitignore | 2 ++ projets.qmd | 14 +++++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..457c23f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.quarto/ +public/ \ No newline at end of file diff --git a/projets.qmd b/projets.qmd index ea3ffd8..8213b13 100644 --- a/projets.qmd +++ b/projets.qmd @@ -1,9 +1,14 @@ --- -title: "Projets" +# title: "Projets" format: html: - page-layout: full + page-layout: custom --- +::: {.grid} +::: {.g-col-1} +::: +::: {.g-col-9} +<h1>Projets</h1> <!-- https://quarto.org/docs/output-formats/page-layout.html --> Projets portés par des membres du CATI CODEX: @@ -25,5 +30,8 @@ DT::datatable(dt.projet, #columnDefs = list(list(width = '400px', targets = c(7))) )) ``` +::: - +::: {.g-col-1} +::: +::: \ No newline at end of file -- GitLab