hugo-theme-wondermod/README.md

42 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

2022-07-24 15:32:36 +02:00
## WonderMod (PaperMod fork - theme for Hugo)
2022-07-24 15:30:47 +02:00
<p align="center">
2022-07-24 15:31:40 +02:00
<img src="https://raw.githubusercontent.com/wonderfall/hugo-WonderMod/master/.github/assets/web-capture.jpeg" title="WonderMod" alt="WonderMod image">
2022-07-24 15:30:47 +02:00
</p>
### What is this?
2022-07-24 15:32:36 +02:00
WonderMod is a fork of an original theme for [Hugo](https://gohugo.io/) called [PaperMod](https://github.com/adityatelange/hugo-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.
2019-04-01 11:57:38 +02:00
2022-07-26 02:10:43 +02:00
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](https://github.com/adityatelange/hugo-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.
2022-07-24 15:30:47 +02:00
### Main changes
2022-07-24 01:39:42 +02:00
Current "main" changes are as follows:
2023-12-31 20:57:00 +01:00
- 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
- Simple reading progress bar
- Refactored RSS template (proper Atom feed)
- Bunch of CSS and other changes
2022-07-24 15:30:47 +02:00
### Credits
2022-07-24 01:39:42 +02:00
Additional credits:
2022-07-24 02:07:44 +02:00
- [PaperModX](https://github.com/reorx/hugo-PaperModX/) by reorx
2022-07-24 15:30:47 +02:00
### Configure
Most of the installation process and settings are shared with the original PaperMod, so check out [their documentation](https://github.com/adityatelange/hugo-PaperMod/wiki/Installation). One noticeable difference though is that in order to enable syntax highlighting, you have to add this to your `config.yml` :
2022-07-24 02:07:44 +02:00
```
markup:
highlight:
style: dracula
noClasses: false
2022-07-24 15:30:47 +02:00
guessSyntax: true
2022-07-24 02:07:44 +02:00
```
2022-07-26 02:10:43 +02:00
See [Hugo documentation](https://gohugo.io/getting-started/configuration-markup#highlight) for more options.
2022-08-23 13:24:00 +02:00
*Note: for some reason, the `guessSyntax` doesn't actually work but is required. Please make your code fences explicit for the time being.*