This is my personal academic website built with Hugo and the PaperMod theme, customized for academic use.
.
├── content/ # All website content
│ ├── about/ # About page
│ ├── publications/# Research publications
│ ├── research/ # Research areas and interests
│ ├── projects/ # Research projects
│ ├── teaching/ # Teaching experience
│ └── news/ # News and updates
├── static/ # Static files (images, PDFs)
├── themes/ # Hugo themes (PaperMod)
└── hugo.toml # Site configuration
-
Install Hugo (v0.147.7 or later):
brew install hugo
-
Clone the repository:
git clone --recurse-submodules https://github.com/intherejeet/intherejeet.github.io.git cd intherejeet.github.io -
Run the development server:
hugo server -D
-
View the site at
http://localhost:1313
The site is automatically built and deployed to GitHub Pages using GitHub Actions when changes are pushed to the main branch.
- Site Configuration: Edit
hugo.tomlfor site-wide settings - Custom CSS: Add styles to
assets/css/extended/custom.css - Content: Add/edit markdown files in the
content/directory - Images: Place images in
static/images/
hugo new publications/year-paper-title.mdhugo new news/date-title.mdThe content of this website is © Inderjeet Singh. The underlying theme is MIT licensed.