.github/ISSUE_TEMPLATE | ||
archetypes | ||
assets | ||
data | ||
exampleSite | ||
i18n | ||
images | ||
layouts | ||
static | ||
.git.swp | ||
.gitignore | ||
LICENSE | ||
local_git_config.sh | ||
netlify.toml | ||
README.md | ||
task_regen_toc.sh | ||
task_serve.sh | ||
theme.toml |
Infidel Cupper
This is infidel's fork version of hugo Cupper theme. I use this theme for my own site nnag.me.
Added Feature
Plausible integration
Shortcode
{{ if and (.Site.Params.plsDomain) (.Site.Params.plsUrl) }}
<script defer data-domain="{{.Site.Params.plsDomain}}" src="{{.Site.Params.plsUrl | relURL}}"></script>
{{ end }}
Hugo Conf
...
params:
plsDomain : <Your Domain>
plsUrl : <Your Plausible script url>
...
Plausible Bypass Adblock
Adblocker easyfilter has some filter on “plausible.js” string, especially if its routed towards external source . To bypass this you can setup a proxy rule on nginx to redirect this plausible api into the currently accessed site.
nginx conf
server {
...
location = /js/script.js {
# Change this if you use a different variant of the script
proxy_pass https://plausible.io/js/script.js;
# Tiny, negligible performance improvement. Very optional.
proxy_buffering on;
# Cache the script for 6 hours, as long as plausible.io returns a valid response
proxy_cache jscache;
proxy_cache_valid 200 6h;
proxy_cache_use_stale updating error timeout invalid_header http_500;
# Optional. Adds a header to tell if you got a cache hit or miss
add_header X-Cache $upstream_cache_status;
}
location = /api/event {
proxy_pass https://plausible.io/api/event;
proxy_buffering on;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
}
}
Hugo Conf
...
params:
plsDomain : <Your Domain>
plsUrl : /js/script.js
...
PDF.js
shortcode
layout/shortcodes/embed-pdf.html
scripts
static/js/pdf.js
static/js/pdf.worker.js
Layout & CSS
Homepage layout/index.html
Homepage splited into two main section, Greetings section and Recent Post section. Both of the section is wrapped using inf-border
class to give them borders. The Greetings section now has subsection of important links which is paritally loaded from custom layout of icon-links.html
.
The Recent Posts section is managed by inf-patterns-list
class, using html table instead of html lists format.