Postdoctoral Scholar @ UVA School of Data Science
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This is a Jekyll-based academic personal website for Wooyong Jung, hosted on GitHub Pages at https://yilmajung.github.io. It uses the Journal theme and showcases research projects, blog posts, and professional information.
# Install dependencies
bundle install
# Run local development server
bundle exec jekyll serve
# Build for production
bundle exec jekyll build
The site uses Jekyll 3.8.5 with plugins: jekyll-paginate and jekyll-sitemap.
The site uses three Jekyll collections defined in _config.yml:
/blog/:slug/project/:slug/:namePosts and projects often have parallel content (same project in both collections with slightly different formats).
Layouts in _layouts/:
default.html - Base template with header, footer, MathJax supportpage.html, post.html, project.html - Extend default for specific content typesPartials in _includes/:
header.html - Site navigationfooter.html - Footer contentsocials.html - Social media icon linkscontact-form.html - Formspree-powered contact formSCSS files in _sass/ compile through css/style.scss. The stylesheet pulls variables from _data/settings.yml using Liquid templating, allowing centralized control of colors, fonts, and spacing.
Blog posts and projects use:
---
title: 'Post Title'
date: YYYY-MM-DD 00:00:00
featured_image: '/images/...'
excerpt: Brief description
---
Projects may include a subtitle field for additional context.