@ Center for Vital Longevity
2026-05-14
Make a personal and professional website using quarto and host it on GitHub (learning git along the way)
Go to GitHub and create a new repository with the name <user>.github.io
<user> is your GitHub usernamehttps://<user>.github.ioSettings > Pages
deploy from branchmain /docsSaveDocuments directoryGitHub directoryFor mac users:
- Note: You will have to authenticate/login if you haven't used it before.
_quarto.yml to output your website into ./docsoutput-dir: docs under project:Render in RStudiogit fetch # looks at what prior changes were made
git pull # merges prior changes to what you currently have
git push # pushes changes back to GitHubCheck website: https://<user>.github.io
_quarto.yml.yml?
_quarto.yml?
_quarto.yml exampleproject:
type: website
output-dir: docs
website:
title: "<name>, Ph.D."
navbar:
search: true
right:
- icon: "bi bi-file-earmark-person"
text: "CV"
href: cv.pdf
target: _blank
- icon: github
text: GitHub
href: https://github.com/<user>
target: _blank
- text: Connect
menu:
- icon: linkedin
text: LinkedIn
href: https://www.linkedin.com/in/<user>/
target: _blank
- text: ResearchGate
href: https://www.researchgate.net/profile/<user>
target: _blank
- icon: twitter-x
text: X
href: https://x.com/<user>
target: _blank
format:
html:
theme: cosmo
css: styles.css
editor: source_quarto.yml referencesindex.qmd.qmd?
index.qmd is the homepage of the websiteindex.qmd example---
title: "Ekarin Eric Pongpipat"
subtitle: "Ph.D. in Cognition and Neuroscience"
image: images/profile-picture-circle.png
about:
template: jolla
links:
- icon: linkedin
text: LinkedIn
href: https://linkedin.com/in/epongpipat/
- icon: github
text: Github
href: https://github.com/epongpipat
---
I am interested in understanding the relationship between brain architecture (e.g., networks and gradients) and cognition, and how this relationship can change as we age and for different groups of individuals (e.g., disease-disorder states and genetic predispositions). I’m also interested in statistics, research methods, intuitive data visualization, and open science practices (open source code, open data, and open publication access).index.qmd note_quarto.yml file accordinglyCheck website again: https://<user>.github.io
images/ directory to store all imagesdata/ directory to store all data such as education, posters, and publications