Go to file
jpk acc3023d69 CSS code tag optimizations 2024-01-10 13:09:47 +01:00
archetypes Renamed posts archetype to blog 2023-03-27 09:41:27 +02:00
assets/css CSS code tag optimizations 2024-01-10 13:09:47 +01:00
layouts set layout to render 2023-08-03 14:28:29 +02:00
static/css/fonts Hax0r hugo theme 2023-03-23 11:50:57 +01:00
LICENSE Skeleton theme 2023-03-23 07:57:24 +01:00
README.md Added README.md with instructions to help with the setup 2023-03-24 13:52:39 +01:00
theme.toml Hax0r hugo theme 2023-03-23 11:50:57 +01:00

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