|
| 1 | +# PaperModX |
| 2 | + |
| 3 | +PaperModX is a forked version of [PaperMod](https://github.com/adityatelange/hugo-PaperMod), |
| 4 | +it aims at adding new features and improving code quality, |
| 5 | +makes it easier to read and modify by anyone with basic knowledge of Hugo and HTML. |
| 6 | + |
| 7 | +Features and changes: |
| 8 | +- Table of Contents (ToC) floating on the side |
| 9 | +- InstantClick integration |
| 10 | +- Social icons from [Simple Icons](https://simpleicons.org/) |
| 11 | +- Opinionated UI enhancements |
| 12 | + |
| 13 | +## Getting started |
| 14 | + |
| 15 | +You can use [reorx/papermodx-example](https://github.com/reorx/papermodx-example) as a boilerplate to create a new Hugo site with PaperModX theme. For detailed instructions please see the README of papermodx-example repo. |
| 16 | + |
| 17 | +## Table of Contents (ToC) floating on the side |
| 18 | + |
| 19 | +By adding config: |
| 20 | + |
| 21 | +```yaml |
| 22 | +params: |
| 23 | + TocSide: 'left' # or 'right' |
| 24 | +``` |
| 25 | +
|
| 26 | +ToC will float on the left/right side of the page. |
| 27 | +You can take a look at how `'right'` feels like in [Installation | Update](https://reorx.github.io/hugo-PaperModX/docs/installation/). |
| 28 | +
|
| 29 | +The ToC box is responsive, it only shows on the side when minimum screen size is 1440px. |
| 30 | +
|
| 31 | +This feature is enabled on this site. |
| 32 | +
|
| 33 | +
|
| 34 | +## InstantClick integration |
| 35 | +
|
| 36 | +By adding config: |
| 37 | +
|
| 38 | +```yaml |
| 39 | +params: |
| 40 | + EnableInstantClick: true |
| 41 | +``` |
| 42 | +
|
| 43 | +[InstantClick](http://instantclick.io/) will be enabled, |
| 44 | +making navigation behaves like Single Page Application. |
| 45 | +
|
| 46 | +Note that `/search` pages are omitted from InstantClick |
| 47 | +to prevent conflicts from search's JavaScript, |
| 48 | +this may be changed in the future after refactoring those scripts. |
| 49 | + |
| 50 | +Another thing to notice is smooth scrolling will be disabled |
| 51 | +if InstantClick is enabled, because they both listen click |
| 52 | +event on every `<a>` tags. IMO smooth scrolling is not very useful |
| 53 | +so it has to give way to InstantCllick. |
| 54 | + |
| 55 | +This feature is enabled on this site. |
| 56 | + |
| 57 | + |
| 58 | +## Give links an accent color. |
| 59 | + |
| 60 | +Though PaperModX is designed to be minimal, accent color is still essential. |
| 61 | +It's a good way to show personality and make your site feels more delightful. |
| 62 | + |
| 63 | +The default color is a purple vibe, |
| 64 | +you can customize the colors of link, link underline and their hover variants |
| 65 | +by override the following css variables in `assets/css/extended/custom.css` of your site. |
| 66 | + |
| 67 | +```css |
| 68 | +:root { |
| 69 | + --link-color: var(--primary); |
| 70 | + --link-hover-color: #573eaa; |
| 71 | + --link-underline-shadow: 0 1px 0 var(--link-color); |
| 72 | + --link-hover-underline-color: #573eaa; |
| 73 | + --link-hover-underline-shadow: 0 2px 0 var(--link-hover-underline-color); |
| 74 | +} |
| 75 | +``` |
| 76 | + |
| 77 | + |
| 78 | +## Customize pagniator size |
| 79 | + |
| 80 | +In section pages, if you want the paginator size be different from the |
| 81 | +[global config](https://gohugo.io/templates/pagination/#configure-pagination), |
| 82 | +you can add `paginate` in the frontmatter to customize. |
| 83 | + |
| 84 | +```yaml |
| 85 | +--- |
| 86 | +paginate: 10 |
| 87 | +--- |
| 88 | +``` |
| 89 | + |
| 90 | + |
| 91 | +## Menus external link |
| 92 | + |
| 93 | +You can add `external: true` to a menu item's params to mark it as an external link, |
| 94 | +this will add a small icon to the end, and make the link open in new tab when clicked. |
| 95 | + |
| 96 | +```yaml |
| 97 | +menu: |
| 98 | + main: |
| 99 | + - name: "@Author" |
| 100 | + url: "https://reorx.com" |
| 101 | + params: |
| 102 | + external: true |
| 103 | +``` |
| 104 | + |
| 105 | + |
| 106 | +## Highlight code with Chroma, no bullshit |
| 107 | + |
| 108 | +PaperMod uses highlight.js to highlight code blocks. |
| 109 | +In PaperModX, we use Chroma which is the recommended way in Hugo's |
| 110 | +[official docs](https://gohugo.io/content-management/syntax-highlighting/#:~:text=Hugo%20uses%20Chroma%20as%20its%20code%20highlighter%3B%20it%20is%20built%20in%20Go%20and%20is%20really%2C%20really%20fast), |
| 111 | +thus changing theme is easily supported. |
| 112 | + |
| 113 | +By default the themes are `github` for light and `dracula` for dark, |
| 114 | +you can change it by adding `chroma-light.css` and `chroma-dark.css` |
| 115 | +in site's `assets/css/lib` directory. |
| 116 | + |
| 117 | + |
| 118 | +## Social icons from Simple Icons |
| 119 | + |
| 120 | +Add social icons with `-simple` suffix from [Simple Icons](https://simpleicons.org/). |
| 121 | + |
| 122 | +Available icons: |
| 123 | +- github-simple |
| 124 | +- rss-simple |
| 125 | +- telegram-simple |
| 126 | +- twitter-simple |
| 127 | +- pinboard-simple |
| 128 | + |
| 129 | +The icons are moved from `layouts/partials/svg.html` to `data/svg.toml`, |
| 130 | +makes it easier to maintain, it's now possible to have an index page |
| 131 | +to show all the icons, check it out at: [Icons Preview](https://reorx.github.io/hugo-PaperModX/docs/icons_preview/) |
| 132 | + |
| 133 | + |
| 134 | +## Opinionated UI enhancements |
| 135 | + |
| 136 | +- Distinguish home page width and post page width, post page is wider |
| 137 | + (800px) for better readability, you can change it by `--post-width` in `theme-vars.css`. |
| 138 | +- Menu links are always bold, this feels more consistent when clicking around. Active links have deeper color. |
0 commit comments