1
0
Fork 0
Hugo theme with no predefined colors and minimal styling.
Datei suchen
tastytea 3b6fd103ed
Add link to my blog's config file to readme.
2021-12-15 13:18:48 +01:00
archetypes Add toc options to AsciiDoc archetype. 2020-12-27 20:51:01 +01:00
assets Enable hyphens. 2021-09-11 16:57:38 +02:00
images Update screenshots. 2021-05-17 03:26:22 +02:00
layouts Don't automatically add RSS hyperlink. 2021-09-25 14:55:16 +02:00
.editorconfig Add EditorConfig. 2019-11-20 23:52:38 +01:00
CODE_OF_CONDUCT.adoc Add COC and contributing guidelines. 2019-11-20 23:45:46 +01:00
CONTRIBUTING.adoc Add COC and contributing guidelines. 2019-11-20 23:45:46 +01:00
LICENSE Add LICENSE. 2019-11-20 22:40:09 +01:00
README.md Add link to my blog's config file to readme. 2021-12-15 13:18:48 +01:00
theme.toml Fix min_version. 2021-05-17 03:30:49 +02:00

README.md

nocolor

nocolor is a Hugo theme with no predefined colors and minimal styling. It is based on Slick.

Features

  • Supports taxonomies of tags, categories and series with their own pages.
  • RSS Feed with complete entries.
  • Open Graph, Schema.org and Twitter Cards support.
  • Fully customizable menu entries.
  • No JavaScript, no bundled fonts, no external requests.
  • Ability to inject own CSS file.

Installation

git submodule add --branch main https://schlomp.space/tastytea/hugo-theme-nocolor.git themes/nocolor
echo 'theme = "nocolor"' >> config.toml

Update with git submodule update --remote. If you don't keep your blog in a git repository, install it with git clone https://schlomp.space/tastytea/hugo-theme-nocolor.git themes/nocolor or unpack the archive into themes/nocolor.

Breaking changes:

  • 2021-09-25: Don't automatically add RSS hyperlink.

Configuration & Modification

Please take a look at the configuration example for Slick. It is valid for nocolor too, with these exceptions:

  • favicon and css have to be in in the assets folder.

You can add things to the end of the <head> section by overwriting the partial template extra_head.html or above the footer by overwriting extra_foot.html. The common way to do it is to create layouts/partials/extra_head.html or layouts/partials/extra_foot.html, respectively.

Maybe the configuration file for my blog is helpful, too.

Custom ARIA labels

Some elements can't be labeled by default because we don't know what's going to be in it. Custom ARIA labels are supported for the top menu and the bottom menu.

config.toml:

[params]
    [params.aria]
        menu_top = "Main"
        menu_bottom = "Contact"

Syntax highlighting with Asciidoctor

If you want source code highlighting with AsciiDoc, you'll need pygmentize from the package pygments. Set this in your config file:

config.toml:

pygmentsCodefences = true
pygmentsCodeFencesGuessSyntax = false
pygmentsUseClasses = true

Run pygmentize -L styles for a list of available styles and generate a CSS file:

pygmentize -f html -S <style> -a .highlight \
           | grep -v '^[^\.]' | sed -E 's/ \.(\w+) \{/ \.tok-\1 {/' > static/syntax.css

And add :source-highlighter: pygments at the top of your posts, below the front matter. Make sure to include the generated CSS file. You can also set the source-highlighter attribute in your config file.1

Table of contents

Table of contents are only written when the word count exceeds 400 and the toc field in your contents front matter is set to true. See the Hugo documentation for details. You can overwrite the template by adding the file layouts/partials/toc.html to your blog.

Screenshots

Screenshot

Contributing

See https://schlomp.space/tastytea/hugo-theme-nocolor/src/branch/main/CONTRIBUTING.adoc.