1
0
Fork 0
This is my current website. A Hugo theme based on WonderMod by Wonderfall and adapted for https://olivier.falcoz.net/
Go to file
Olivier 5d5893f818 Delete content/projects.md 2023-11-27 15:56:28 +01:00
.github Update content 2023-11-05 03:21:11 -07:00
archetypes Update archetypes/default.md 2023-11-27 15:44:43 +01:00
content Delete content/projects.md 2023-11-27 15:56:28 +01:00
layouts Site Upload 2022-09-02 17:49:44 -04:00
static Update static/_headers 2023-11-27 15:54:49 +01:00
themes Update content 2023-11-05 03:21:11 -07:00
.gitignore Update .gitignore 2023-11-27 15:41:26 +01:00
.gitmodules Site Upload 2022-09-02 17:49:44 -04:00
README.md Update README.md 2023-11-27 15:42:23 +01:00
config.yml Update config.yml 2023-11-27 15:43:31 +01:00

README.md

WonderMod theme for Hugo - https://olivier.falcoz.net

What is this?

This is a fork of the WonderMod theme developed by Wonderfall.

Credits

WonderMod image

original README.md

WonderMod is a fork itself 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, Wonderfall decided to maintain his own fork (he 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 him, you probably don't want to use WonderMod.

When implementing new features, Wonderfall tries to do as much as he can with pure CSS code instead of adding new JavaScript code. He'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 (2528906)
  • Improved YouTube shortcode (4dc3bee)
  • Built-in Chroma instead of client-side syntax highlighting with HLJS (841141)
  • Responsive Table of Contents with side display support (2303605)
  • Responsive "hamburger" menu for mobile (723ac4f)
  • Simple reading progress bar (13876be)
  • Bunch of CSS and other changes (see commit history)

Additional credits:

Configure

Most of the installation process and settings are shared with the original PaperMod, so check out their documentation. One noticeable difference though is that in order to enable syntax highlighting, you have to add this to your config.yml :

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.