Darren John de Lima
Darren John de Lima
I've been trying versions of ``` function wallpaper() { document.body.style.backgroundImage = "url('{{ if .Site.Params.customWallpaperDark }}{{ .Site.Params.customWallpaperDark | absURL }}{{ else }}{{ .Site.Params.customWallpaper | absURL }}{{ end }}')"; document.body.style.backgroundAttachment = "fixed";...
@kishorbhat I'm having this same issue, as is #37. To reproduce: 1. `hugo new site` 2. Add [Dream theme](https://github.com/Darthagnon/hugo-theme-dream/tree/production) to `/themes/dream` folder, and enable theme in `config.toml` 3. Add Hugo...
Duplicate of #48
If you prefer, I can remove unused metadata from template
I will be going through the Wiki and adding some parts to the templates, e.g. commented out "disable TOC" option
It's "heavily inspired by [utterances](https://github.com/utterance/utterances)" - Hugo theme [Dream](https://github.com/g1eny0ung/hugo-theme-dream) (I use a [fork](https://github.com/Darthagnon/hugo-theme-dream) on my website) uses utterances, maybe it could be ported.
I suspect the PhotoSwipe loader uses some sort of weird workaround, as I notice it scrolls to the top of the page to display things, before scrolling back down (when...
I'm going to be using hugo-easy-gallery in my [site](robot-one.github.io) and have already [forked and merged all currently open PRs](https://github.com/Darthagnon/hugo-easy-gallery/tree/production), and will be adding my own tweaks, and organising the documentation,...
Relevant part of Photoswipe documentation: https://photoswipe.com/opening-or-closing-transition/ I've noticed, too, how the animation is wrong.
I tried adding `showHideAnimationType: 'zoom'` to `load-photoswipe.js` without any success: ``` // Save the index of this image then add it to the array items.push(item); // Event handler for click...