From 87cde7ae5c67a89affc29edba7ac83fc00480461 Mon Sep 17 00:00:00 2001 From: Oleh Omelchenko Date: Sat, 10 Jan 2026 05:29:03 +0200 Subject: [PATCH] chore: fix trailing slash problem --- .nojekyll | 0 404.qmd | 24 ++++++++++++++++++++++++ _quarto.yml | 12 +++++++----- 3 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 .nojekyll create mode 100644 404.qmd diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/404.qmd b/404.qmd new file mode 100644 index 0000000..a40ac5b --- /dev/null +++ b/404.qmd @@ -0,0 +1,24 @@ +--- +title: "Page Not Found" +page-layout: full +--- + + + +## Page Not Found + +The page you're looking for doesn't exist. You'll be redirected shortly if this was caused by a trailing slash in the URL. + +[Return to homepage](/) diff --git a/_quarto.yml b/_quarto.yml index a0ca229..2eb08fc 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -1,6 +1,8 @@ project: type: website output-dir: _site + resources: + - .nojekyll render: - "*.qmd" - "!archetypes/" @@ -26,15 +28,15 @@ website: background: light left: - text: "Posts" - href: posts/index.qmd + href: posts - text: "TILs" - href: til/index.qmd + href: til - text: "Portfolio" - href: portfolio/index.qmd + href: portfolio - text: "Projects" - href: projects/index.qmd + href: projects - text: "About" - href: about/index.qmd + href: about right: - icon: github href: https://github.com/olehomelchenko