This repository contains the source code for my personal website built with Quarto and R. The site highlights my projects, research interests, and professional experience.
🔗 Live site: https://hectorfajardo.github.io/
- The site content is authored in Quarto (
.qmd) documents. - GitHub Pages serves the rendered HTML stored in the
docs/directory. _freeze/caches generated assets to speed up subsequent renders.
To update the site:
- Edit or add content in this repository.
- Commit and push the changes to the
mainbranch. - GitHub Pages will automatically rebuild and publish the site.
GitHub Pages is configured to publish the contents of docs/ from the main branch. To update the live site:
- Edit or add content locally.
- Run
quarto renderif you want to update the generated files before committing. - Commit and push your changes to
main. - GitHub Pages will automatically serve the updated content.
.
├── PersonalBlog.Rproj # RStudio project file
├── README.md
├── _freeze/ # Quarto cache of rendered outputs
│ ├── posts/
│ └── site_libs/
├── _quarto.yml # Global Quarto configuration
├── about.qmd
├── about/ # Static assets for the About page
│ └── about_profile.jpg
├── blog.qmd
├── cv.qmd
├── cv/ # Supporting assets for the CV page
│ └── CV_Fajardo_Hector.pdf
├── docs/ # Rendered site published by GitHub Pages
│ ├── about/
│ ├── cv/
│ ├── posts/
│ └── site_libs/
├── home_pic.jpg
├── index.qmd # Homepage source
├── posts/
│ ├── _metadata.yml # Shared metadata for blog posts
│ ├── post-with-code/
│ │ ├── image.jpg
│ │ └── index.qmd
│ └── welcome/
│ ├── index.qmd
│ └── thumbnail.jpg
├── research_projects.qmd
├── science_communication.qmd
└── styles.css # Custom site styling
A license has not been specified for this repository. If you plan to reuse the content, please contact the repository owner.