A minimal, brutalist portfolio/blog built with Hugo. Live at proishan11.github.io.
� 0–49 🟠 50–89 🟢 90–100
Run the test yourself: Google Lighthouse PageSpeed Insights
Last tested: May 27, 2026
- Minimal monospace design — warm cream palette with JetBrains Mono
- Light / Dark theme toggle with cycle button
- Markdown with full support for code blocks, math (KaTeX), tables, images
- Syntax highlighting via Hugo's built-in Chroma with language badges and copy button
- Math rendering via KaTeX (enable per-post with
math: true) - Sidenotes — margin notes for asides, fun facts, images (shortcode)
- Reading progress bar and back-to-top button
- Scroll reveal animations and accent-on-scroll effects
- Table of Contents — auto-generated for long posts
- RSS feed, Open Graph / Twitter meta tags, sitemap
- Responsive layout with mobile-first design
- GitHub Pages deployment via Actions
- About — bio, interests, social links (obfuscated email)
- Posts — blog with code, math, sidenotes support
- Projects — showcase with tech tags, status badges, links
- Bookshelf — simple reading list
- Reading — curated blogs and resources
- Resume — direct PDF download
Install Hugo extended edition: https://gohugo.io/installation/
hugo server -Dhugo new posts/my-new-post.mdEdit hugo.toml to set your site title, tagline, and base URL:
baseURL = 'https://YOUR-USERNAME.github.io/'
title = 'YOUR.SITE'
[params]
tagline = "YOUR TAGLINE HERE"- Push this repo to GitHub
- Go to Settings → Pages → Source and select GitHub Actions
- The included
.github/workflows/hugo.ymlwill build and deploy on every push tomain
Posts live in content/posts/. Frontmatter options:
---
title: "Post Title"
subtitle: "Optional subtitle"
date: 2025-01-01
author: "Your Name"
math: false # set to true to enable KaTeX
draft: false
---Enable math: true in frontmatter, then use:
- Inline:
$E = mc^2$ - Display:
$$\int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2}$$