Help Needed: Adding Simple Bottom Navigation to Quarto Website

I'm building a basic Quarto website to house my schoolwork, and I'd like to add simple navigation to the bottom of most pages. Here's an example of what I'm aiming for:

Screen Shot 2024-09-19 at 9.46.09 PM

The structure of my site is as follows:

Homepage
└── Course Page
    └── Assignments Index
        └── Individual Assignment

I want to include navigation on the Course Pages and Assignment Indexes but not on the Homepage or individual Assignment pages.

Specific Help Needed

  1. How can I implement this navigation in Quarto? (Code snippets or configuration tips would be appreciated.)
  2. What's the best way to selectively apply this navigation to specific pages?
  3. Should I know any Quarto-specific best practices or built-in features for this navigation type?

Additional Information

Any help or guidance would be greatly appreciated. I really appreciate any help you can provide!

Hi! From the docs, try something like this:

website:
  page-footer: 
    left: "Copyright 2021, Norah Jones" 
    right: 
      - icon: github
        href: https://github.com/
      - icon: twitter 
        href: https://twitter.com/
1 Like