Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 3.46 KB

README.md

File metadata and controls

54 lines (37 loc) · 3.46 KB

mragsac.github.io

This repository contains code for the website hosted at https://mragsac.github.io through gh-pages at the custom domain https://mragsac.com. It was built using quarto, an open-source scientific and technical publishing system sponsored by Posit, PBC.

Interested in using quarto for a GitHub website?

If you're interested in using quarto for your own site, I recommend following the steps below to get started with a simple static webpage.

  1. Download quarto for your system and tool of choice from the Getting Started page. I use quarto for macOS and Visual Studio Code!

  2. Create a website project using the quarto CLI utility where $WEBSITE_NAME_HERE is $GITHUB_USERNAME.github.io

# Create a new website project with the quarto CLI
quarto create project website $WEBSITE_NAME_HERE
  1. After creating a new website project, make sure you have the following files present:
    • _quarto.yml : Website options and HTML defaults for documents created for the website (this includes navigation options, search options, and other tools)
    • index.qmd : Landing page for your website (mine is configured like an about page to take advantage of existing templates)
    • 404.qmd : Default stylings for a 404 website page
    • .gitignore : Specifies files to ignore when uploading to GitHub, such as the /.quarto/ hidden folder and /_site/ default directory
    • .nojekyll : Prevents additional processing of the quarto website with Jekyll (turned on by default by GitHub)

Note

If you're interested in creating a blog or archive of posts on your personal website, quarto also has that functionality! You can find more information on quarto's documentation for Listing Pages.

Configuring the _quarto.yml file to export to a custom directory for easy deployment

I've published my site with GitHub Pages using the documentation on the quarto website, but to make things easier for others, I've reproduced the steps I took here.

  1. Change the default website rendering directory from /_sites/ to docs by specifying it as the output directory in the _quarto.yml configuration file
# _quarto.yml

project:
  type: website
  output-dir: docs
  1. Next, render the website and initialize all files to add to your $GITHUB_USERNAME.github.io repository
# First render the website and then add the rendered files to GitHub 
quarto render
git add docs
git commit -m "Publish site to docs/"
git push
  1. Finally, configure your GitHub repository ($GITHUB_USERNAME.github.io) to publish from the /docs/ directory of your main branch in the Settings > Pages section under "Code and automation"

Once you've set this up, GitHub will trigger a deployment of your website to the https://$GITHUB_USERNAME.github.io URL (or a custom domain if you have that configured) whenever you commit and push to your main branch!