Fork of hugo-PapermodX for my own purposes
Go to file
Reorx 280efabd02 tune link styles, add color to menu, content, footer links 2022-04-13 17:24:01 +08:00
.github fix gh-pages checkout branch 2022-04-12 23:36:15 +08:00
assets tune link styles, add color to menu, content, footer links 2022-04-13 17:24:01 +08:00
i18n Update translation zh.yaml (#868) 2022-04-09 13:23:18 +05:30
images images: update 2020-09-25 13:35:31 +05:30
layouts tune link styles, add color to menu, content, footer links 2022-04-13 17:24:01 +08:00
LICENSE update LICENSE for 2021 2021-01-08 23:37:28 +05:30
README.md add more details in readme 2022-04-13 00:59:17 +08:00
go.mod chore: add go.mod (#51) 2020-10-21 10:36:44 +05:30
theme.toml Bump minimum Hugo version to `0.83.0` 2021-10-22 20:01:02 +05:30

README.md

PaperModX

PaperModX is a forked version of PaperMod, it aims at adding new features and improving code quality, makes it easier to read and modify by anyone with basic knowledge of Hugo and HTML.

Features and changes:

  • Table of Contents (ToC) floating on the side
  • InstantClick integration
  • Social icons from Simple Icons
  • Opinionated UI enhancements

Table of Contents (ToC) floating on the side

By adding config:

params:
  TocSide: true

ToC will float on the right side of the page. this feature is enabled on this site.

InstantClick integration

By adding config:

params:
  EnableInstantClick: true

InstantClick will be enabled, making navigation behaves like Single Page Application.

Note that /search pages are omitted from InstantClick to prevent conflicts from search's JavaScript, this may be changed in the future after refactoring those scripts.

Another thing to notice is smooth scrolling will be disabled if InstantClick is enabled, because they both listen click event on every <a> tags. IMO smooth scrolling is not very useful so it has to give way to InstantCllick.

This feature is enabled on this site.

Social icons from Simple Icons

Add social icons with -simple suffix from Simple Icons.

Available icons:

  • github-simple
  • rss-simple
  • telegram-simple
  • twitter-simple
  • pinboard-simple

Opinionated UI enhancements

  • Distinguish home page width and post page width, post page is wider (800px) for better readability, you can change it by --post-width in theme-vars.css.
  • Menu links are always bold, this feels more consistent when clicking around. Active links have deeper color.