-
DescriptionI have a repository, that contains not only files for quarto. I want to use quarto (+profiles) to generate a website from the
With the following project:
type: website
output-dir: output
format:
html:
theme: cosmo
css: styles.css
toc: true
website:
title: "Awesome Page"
navbar:
left:
- href: site/index.qmd
text: Home
sidebar:
contents: site/**/*
collapse-level: 1
repo-url: https://gitlab.ourdomain.com/group/project
repo-actions: [edit, source, issue]
repo-subdir: site
site-url: https://group.gitlab.ourdomain.com/project With this setting I get a somewhat working website, however everything is located under the Also directly inside the output directory another I want to remove the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Use post-render script to move the files. This "issue" is because Quarto keeps the structure of your project. Since your source are under "site", the outputs also are because a |
Beta Was this translation helpful? Give feedback.
Use post-render script to move the files.
This "issue" is because Quarto keeps the structure of your project. Since your source are under "site", the outputs also are because a
_quarto.yml
defines the root.