Anubis is a simple minimalist theme for Hugo blog engine. Demo
- Dark mode (automatic or by switcher)
- Offline support via Progressive Web App
- You must create
manifest.json
in your static directory - You must create
index.sw.js
in your layouts directory - You must add sw as a custom outputFormat in your site's
hugo.toml
- See elibroftw/blog.elijahlopez.ca for an in practice example
- You must create
- Pagination
- Multiple taxonomies: tags, categories, authors
- Multiple sections: posts, notes, etc with customization
- Archive
- Table of Contents
- Open Graph and Twitter Cards support
- Mobile support
- Social icons
- Google Analytics
- Umami Analytics
- Comment systems: Disqus, ISSO, Utteranc.es, GraphComment, Giscus
- RSS feeds
- Related posts (Read Next section)
- Deploy via Netlify (config included in example site)
- Hiding posts from the RSS feed
- Hidden posts (available only by link)
- Translations (en, ru, fr, pl)
- Custom CSS/JS
- Multilingual mode
- Robots.txt
- Favorite posts
- Pagination on post single page
- Optional "Read more" link
- webmentions
You need to install an extended version of Hugo to run this theme.
Initiate a hugo
module system from your project's root directory
hugo mod init github.com/<your_user>/<your_project>
Add the following to your config.toml
or config.yaml
theme = ["github.com/elibroftw/hugo-theme-anubis"]
Inside the folder of your Hugo site run:
git submodule add https://github.com/elibroftw/hugo-theme-anubis.git themes/anubis
For more information read the official setup guide of Hugo.
After installing the theme successfully it requires a just a few more steps to get your site running.
If you have toml config (which is by default), you should rename it to config.yaml or adapt this config for toml syntax.
Example of config.yaml:
languageCode: "en-us"
baseUrl: ""
title: "Anubis"
theme: "anubis"
paginate: 10
disqusShortname: "yourdiscussshortname"
googleAnalytics: "G-12345"
enableRobotsTXT: true
menu:
main:
- identifier: archive
name: Archive
title: Archive
url: /posts/
weight: 0
params:
author: "John Doe"
email: [email protected] # used for microformats
avatar: "/images/me.png" # used for microformats
description: ""
# Uncomment if you need this
# images:
# - images/og-featured.png # relative path to "static" directory
# customCSS:
# - css/my.css # relative path to "assets" directory (don't use main.css filename)
# customJS:
# - js/main.js # relative path to "assets" directory
dateFormat: "2006-01-02"
paginationSinglePost: true
style: light-without-switcher
mainSections: [ "posts" ] # which sections should be on index/main page
sectionsWithFullContentOnListPage: [ "notes" ] # for which sections content should be displayed on list pages
readMore: false # show read more button
readNextPosts: 5 # show 5 related posts, 0 by default
disableSummary: false
toc: true # display Table of Contents
tocWordCount: 300 # ...when a post is longer than 300 words
copyCodeButton: true # true by default
rssAsSocialIcon: true
mathjax: false # https://www.mathjax.org/
# utteranc.es support
utterancesRepo: "" # mandatory
utterancesTheme: "" # optional
utterancesIssue: "" # optional
utterancesLabel: "" # optional
# isso support
isso:
enabled: true # mandatory
data: "https://comments.example.com/" # mandatory
jsLocation: "https://comments.example.com/js/embed.min.js" # mandatory
css: true # optional
lang: "de" # optional
replyToSelf: true # mandatory
requireAuthor: true # mandatory
requireEmail: true # mandatory
id: "thread-id" # optional
avatar: true # optional
avatar-bg: "#f0f0f0" # optional
feed: false # optional
UmamiAnalytics:
enabled: true # mandatory
dnt: true # optional
id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # mandatory
datacache: false # optional
url: "https://abc.example.com/umami.js" # mandatory
graphcommentId: ""
# giscus support (all mandatory) See https://giscus.app under the Configuration section
GiscusRepo: "elibroftw/blog.elijahlopez.ca"
GiscusRepoId: "R_kgDOGiL7hg"
GiscusCategory: "General"
GiscusCategoryId: "DIC_kwDOGiL7hs4Cer6e"
GiscusLazyLoad: false # optional
webmentions:
url: https://yourdomain.com/webemntions/receive
login: hugo-theme-anubis
pingback: true
social:
- id: github
name: gohugoio
# - id: hugo
# url: "https://gohugo.io/"
# icon: "hugo"
staticDir:
- static
- themes/anubis/static
markup:
highlight:
style: native
goldmark:
renderer:
unsafe: true # enable raw HTML in Markdown
In order to see your site in action, run Hugo's built-in local server.
$ hugo server
Now enter localhost:1313
in the address bar of your browser.
Customize via style
param in params
section of config.
Options:
light-without-switcher
- light theme, without switcher (by default)dark-without-switcher
- dark theme, without switcherauto-without-switcher
- theme based on user system settings, without switcherlight
- light theme by default, can be switched by user to dark theme and back. Theme settings are saved for userdark
- dark theme by default, can be switched by user to light theme and back. Theme settings are saved for userauto
- theme based on user system settings by default, can be switched by user to dark/light theme. Theme settings are saved for user (by default in example sites)
If toc
param in params
section of the config file is set to true
,
Table of Contents is generated for every post that is at least tocWordCount
words long (0
by default, also belongs to the params
section of the config).
This behavior can be overridden on per-post basis
by setting toc
to either true
or false
in the front matter of a post.
To add icon from predefined list, add to params.social
config:
- id of social network
- name for placeholder (usually it's your nickname or login)
Predefined list:
- github
- mastodon (need full url)
- patreon
- snapchat
- soundcloud
- spotify
- telegram
- twitch
- vk
- youtube
Example:
- id: github
name: gohugoio
Config like this generate github icon with "https://github.com/gohugoio" url.
To add predefined icon with custom url, add to params.social
config:
- id of social network
- full url to your network
Example:
- id: github
url: "https://github.com/gohugoio/hugo"
Config like this generate github icon with "https://github.com/gohugoio/hugo" url.
To add custom icon, add to params.social
config:
- id of social network/site
- full url to your network/site
Also you need to create directory static/fa-icons
and add svg icon of your network/site with name equals to id
from config.
Example:
- id: google
url: "https://www.google.com/search?q=I'm+lucky"
Icon should be "static/fa-icons/google.svg"
If you want font awesome icons, download "Font Awesome For Desktop" and open svg directory.
Only works for production environment.
Check config/example usage in exampleSiteMultilingual directory and documentation on Hugo site.
RSS is available by site url + /index.xml. Also available for specific language, section, taxonomy.
rssAsSocialIcon
parameter enables rss social icon with link to site current language RSS.
Based on environment. For production — allow all, for other — disallow all.
Add favorite: true
to post front matter. It adds a "★" icon nearby post's title.
Based on readNextPosts
config parameter. Check this article for configuration details.
Add disable_feed: true
to post front matter.
Add hidden: true
to post front matter. Post also is not available in RSS feed.
Enabled by paginationSinglePost
param in params
section of config.
To provide webmention support you can either specify your webmention.io username with login: webmentionusername
or specify a link to your custom webmention endpoint with url: https://yourdomain.com/webemntions/receive
.
If you use webmention.io you can also enable pingback with pingback: true
Add disableComments: true
to post front matter.
Go to https://giscus.app/ and start the configuration section. When adding the giscus app, limit it to your blog's repository.
I recommend using General and not Announcements for the discussion.
Example: {{< video src="/media/movie.mp4" type="video/mp4" preload="auto" caption="Some caption" alt="Some alt" >}}
MIT
© Dmitry Kolosov 2020