You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
jpk cb3329cc84 Added robots.txt 2 months ago
archetypes Renamed posts archetype to blog 2 months ago
assets/css CSS optimizations 2 months ago
layouts Added robots.txt 2 months ago
static/css/fonts Hax0r hugo theme 2 months ago
LICENSE Skeleton theme 2 months ago
README.md Added README.md with instructions to help with the setup 2 months ago
theme.toml Hax0r hugo theme 2 months ago

README.md

Hax0r Hugo Theme

A minimalistic dark theme for your Hugo site.

Installation

cd <your_hugo_site>
git submodule add https://git.goatpr0n.de/blog/hugo-theme-hax0r.git themes/hax0r

Usage

The theme supports the configuration of colors through editing config.{toml,yaml}.

TOML

[params.style]
backgroundColor = '#04080f'
textColor = '#dae3e5'
borderColor = '#dae3e5'
anchorColor = '#507dbc'
anchorActiveColor = '#bbd1ea'
anchorHoverColor = '#bbd1ea'
preTextColor = '#f8f8f2'
preBackgroundColor = '#272822'

YAML

params:
  style:
    backgroundColor: '#04080f'
    textColor: '#dae3e5'
    borderColor: '#dae3e5'
    anchorColor: '#507dbc'
    anchorActiveColor: '#bbd1ea'
    anchorHoverColor: '#bbd1ea'
    preTextColor: '#f8f8f2'
    preBackgroundColor: '#272822'

Configuration example

baseURL: 'https://goatpr0n.farm/'
languageCode: 'en-us'
title: 'A farm without animals'
theme: 'hax0r'

menu:
  main:
    - name: Blog
      pageRef: /
      weight: 10
    - name: Links
      pageRef: /links
      weight: 20
    - name: Tags
      pageRef: /tags
      weight: 90
    - name: Categories
      pageRef: /categories
      weight: 90

params:
  style:
    backgroundColor: '#04080f'

permalinks:
  blog: /:year/:month/:slug/

taxonomies:
  category: categories
  tag: tags

sitemap:
  changefreq: "monthly"
  filename: "sitemap.xml"
  priority: 0.5