Context
All content files (.qmd, slides, data, CSS) sit flat at the repository root. This makes the project hard to navigate and maintain as it grows. We need a clear folder structure.
Current layout (flat)
_quarto.yml
index.qmd
news.qmd
team.qmd
datasets.qmd
styles.css
requirements.txt
files/slides_kickoff.pdf
files/slides_ab_meeting_12_24.pdf
files/EEGManySteps _ AB meeting survey.tsv
news_files/...
news.ipynb
Proposed layout
_quarto.yml
styles.css
pages/
index.qmd
news.qmd
team.qmd
datasets.qmd
assets/
slides/
slides_kickoff.pdf
slides_ab_meeting_12_24.pdf
data/
ab_meeting_survey.tsv
posters/ (see #10)
images/ (logo, diagrams, etc.)
Tasks
Notes
Quarto handles nested directories well, but the navbar href paths in _quarto.yml need to match. Test locally with quarto preview before committing.
Context
All content files (
.qmd, slides, data, CSS) sit flat at the repository root. This makes the project hard to navigate and maintain as it grows. We need a clear folder structure.Current layout (flat)
Proposed layout
Tasks
pages/directory and move.qmdfiles there (or keep at root if Quarto routing is simpler)assets/slides/and move slide PDFs thereassets/data/and move.tsvdata files thereassets/images/for project images/logos.qmdfiles to reflect new paths_quarto.ymlnavbar hrefs if pages moveab_meeting_survey.tsv)Notes
Quarto handles nested directories well, but the navbar href paths in
_quarto.ymlneed to match. Test locally withquarto previewbefore committing.