02 - Quarto Projects

Slides

View slides in full screen

Exercise 1

  • In your folder, convert the document into a project by running:
Terminal
quarto create project
  • For Type, select website.
  • For Directory, type ..
  • For Title, give it a title related to dams.

Quarto will create several files, including _quarto.yml.

  • Open _quarto.yml.

  • Add final-py.qmd or final-r.qmd under Home and give it the text Report:

_quarto.yml
navbar:
  left:
    - href: index.qmd
      text: Home
    - href: final-r.qmd
      text: Report
  • Open about.qmd and add some information about yourself. Feel free to edit the YAML.
  • Render the project, then explore your new website!

More Information