From b201eab62564fb3f4be7bbe185e30f97630b4504 Mon Sep 17 00:00:00 2001 From: Hendrik Langer Date: Sun, 26 May 2024 21:05:34 +0200 Subject: [PATCH] quarto create project website p3x.de --- .gitignore | 11 +---------- _quarto.yml | 19 +++++++++++++++++++ about.qmd | 5 +++++ index.qmd | 7 +++++++ styles.css | 1 + 5 files changed, 33 insertions(+), 10 deletions(-) create mode 100644 _quarto.yml create mode 100644 about.qmd create mode 100644 index.qmd create mode 100644 styles.css diff --git a/.gitignore b/.gitignore index d89fa7d..075b254 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1 @@ -# ---> Hugo -# Generated files by hugo -/public/ -/resources/_gen/ - -# Executable may be added to repository -hugo.exe -hugo.darwin -hugo.linux - +/.quarto/ diff --git a/_quarto.yml b/_quarto.yml new file mode 100644 index 0000000..a130637 --- /dev/null +++ b/_quarto.yml @@ -0,0 +1,19 @@ +project: + type: website + +website: + title: "P3x.de" + navbar: + left: + - href: index.qmd + text: Home + - about.qmd + +format: + html: + theme: cosmo + css: styles.css + toc: true + + + diff --git a/about.qmd b/about.qmd new file mode 100644 index 0000000..07c5e7f --- /dev/null +++ b/about.qmd @@ -0,0 +1,5 @@ +--- +title: "About" +--- + +About this site diff --git a/index.qmd b/index.qmd new file mode 100644 index 0000000..930c2cc --- /dev/null +++ b/index.qmd @@ -0,0 +1,7 @@ +--- +title: "P3x.de" +--- + +This is a Quarto website. + +To learn more about Quarto websites visit . diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..2ddf50c --- /dev/null +++ b/styles.css @@ -0,0 +1 @@ +/* css styles */