A fast, clean, responsive and hardened Hugo theme.
Go to file
2024-05-27 19:50:36 +02:00
.github Merge remote-tracking branch 'upstream/master' 2023-12-30 22:16:15 +01:00
assets Fix img displayed out of proportions when using responsive images 2024-05-27 18:59:31 +02:00
i18n Add romanian translation to ro.yaml (#1362) 2023-12-23 12:01:01 +05:30
images images: update 2020-09-25 13:35:31 +05:30
layouts Use image partial to render figure shortcut 2024-05-27 19:07:34 +02:00
go.mod built-in Chroma 2022-07-24 01:39:42 +02:00
LICENSE Update License year 2023-02-12 12:21:40 +05:30
Makefile built-in Chroma 2022-07-24 01:39:42 +02:00
README.md Update README, add image optimization info 2024-05-27 19:50:36 +02:00
theme.toml Merge remote-tracking branch 'upstream/master' 2023-12-30 22:16:15 +01:00

WonderMod (PaperMod fork - theme for Hugo)

WonderMod image

What is this?

WonderMod is a fork of an original theme for Hugo called PaperMod (made by adityatelange). Since PaperMod isn't interested in a few changes such as removing inline JavaScript, which I personally require to harden my websites, I decided to maintain my own fork (I didn't want to keep overwriting a bunch of files as a fork workflow is much cleaner). Don't expect a ton of changes, and unless you know me, you probably don't want to use WonderMod.

When implementing new features, I try to do as much as I can with pure CSS code instead of adding new JavaScript code. I'd like to keep the JavaScript part minimal and that's why WonderMod should be totally usable when disabling JavaScript. WonderMod is also designed with strong CSP headers in mind: no inline JavaScript or style, no calls to third-parties.

This fork is regularly synced with upstream changes from PaperMod. A merging workflow was chosen since rebasing WonderMod's changes every time could be less efficient. As such, commit history is a bit messy, but upstream changes will be merged on a best effort basis.

Main changes

Current "main" changes are as follows:

  • Remove inline JavaScript
  • Improved YouTube shortcode
  • Built-in Chroma instead of client-side syntax highlighting with HLJS
  • Responsive Table of Contents with side display support
  • Responsive "hamburger" menu for mobile
  • Image optimization with next-gen image formats
  • Simple reading progress bar
  • Refactored RSS template (proper Atom feed)
  • Bunch of CSS and other changes

Image Optimization

Images are optimized by default without requiring shortcodes, by using a custom image render hook, which in turn uses the image partial that does all the heavy lifting.

By default, the theme creates resized versions of images ranging from 300 to 700 pixels wide in increments of 100 pixels.

If the image format is not WebP, the image is converted. The original file format will serve as a fallback for browsers that don't support the WebP format.

Note that only images that are part of the page bundle are processed. If served from the static/ directory or external sources, the image will be displayed but not be processed.

Additionally, all images are lazily loaded to save the bandwidth of your users.

Credits

Additional credits:

Configure

Most of the installation process and settings are shared with the original PaperMod, so check out their documentation. The noticeable differences though are the additional config.yml options:

  • in order to enable syntax highlighting, add:

    markup:
        highlight:
            style: dracula
            noClasses: false
            guessSyntax: true
    

    See Hugo documentation for more options. Note: for some reason, the guessSyntax doesn't actually work but is required. Please make your code fences explicit for the time being.

  • to change the image compression quality from the default 75%, per the official Image Processing Config Hugo docs:

    imaging:
      quality: 75
    
  • to change the default resize behavior:

    params:
      imageResize:
        min: 300
        max: 700
        increment: 100