A minimal blogging theme for Hugo.
- Clean, minimal design focused on content
- Responsive layout that works on mobile and desktop
- LaTeX/MathJax support for mathematical notation
- Code block wrapping for better readability
- Custom 404 page with auto-redirect
- Picture/image support in posts
cd themes
git submodule add https://github.com/ddritzenhoff/ritzy.gitcd themes
git clone https://github.com/ddritzenhoff/ritzy.gitAdd the theme to your site's configuration:
theme = "ritzy"
[params]
author = "Your Name"
description = "Your site description"ritzy supports the following content structure:
content/_about.md- About section contentcontent/_contact.md- Contact informationcontent/posts/- Blog posts
---
title: "Your Post Title"
date: 2025-06-17
draft: false
description: "A brief description of your post"
---ritzy includes built-in LaTeX support through MathJax. You can use LaTeX in your posts like this:
Inline math: $E = mc^2$
Block math:
$$
f(x) = \int_{-\infty}^{\infty} \hat{f}(\xi) e^{2 \pi i \xi x} d\xi
$$
You can add images to your posts with standard Markdown:
Or with HTML for more control:
<img src="/images/your-image.png" alt="Alt text" style="max-width: 400px;" />Images in posts are automatically centered and responsive. You can add captions to images by adding an italicized text immediately after the image:

*This is an image caption that will be centered below the image*You can add a post like this:
hugo new posts/<post-name>.md
This theme is released under the MIT License. See LICENSE for details.
