Abhinav Jain

My Research Website

Built with Hugo and the HugoBlox Academic CV theme.

Quick start (local preview)

# 1. Install Hugo extended v0.145.0 (see setup guide)
# 2. Clone this repo
git clone https://github.com/[yourusername]/[yourusername].github.io
cd [yourusername].github.io

# 3. Download theme
hugo mod tidy

# 4. Preview locally
hugo server

# 5. Open http://localhost:1313 in your browser

Editing your content

What to edit File location
Your name, bio, photo content/authors/admin/_index.md
Career timeline content/authors/admin/_index.md (experience section)
Research projects content/project/project-N/index.md
Publications content/publication/pub-N/index.md
Talks content/talk/talk-N/index.md
Blog posts content/post/post-name/index.md
Navigation menu config/_default/menus.yaml
Site title, social links hugo.yaml

Adding a new publication

# Copy the template
cp -r content/publication/pub-1 content/publication/my-new-paper
# Then edit content/publication/my-new-paper/index.md

Deploying changes

git add .
git commit -m "Update publications"
git push
# GitHub Actions will rebuild and deploy automatically