Commit Briefs

c341f50a34 Isaac Meerleo

remove unused directory (main)


58a39e780c Isaac Meerleo

Don't need this.


5b95cf30bd Isaac Meerleo

simplify exampl hugo.toml and readme


b9c62491fd Isaac Meerleo

Fix author name and formatting


0901d53711 Isaac Meerleo

Remove example site README


90b1eaacba Isaac Meerleo

Overhall theme css


96a8e8ce21 Isaac Meerleo

Add article section to page title when applicable


4fcf66d288 Isaac Meerleo

Render properly on mobile


654a57872f Isaac Meerleo

Remove old article metadata


bce1db2eb4 Isaac Meerleo

Fix post metadata and title


Branches

Tags

This repository contains no tags

Tree

LICENSEcommits | blame
README.mdcommits | blame
assets/
exampleSite/
layouts/
theme.tomlcommits | blame

README.md

# Soul

A minimal Hugo theme

## Configuration

Add `theme = 'soul'` to your `hugo.toml` and configure the theme parameters:

```toml
baseURL      = 'https://example.com/'
languageCode = 'en-us'
title        = 'My Site'
theme        = 'soul'

[params]
  description = "My personal website"
  author      = "Your Name"
  keywords    = ["blog", "personal"]

  [params.colors]
    background  = "#cdecff"               # Main Background
    accent      = "#ff6300"               # Hover & Accent
    linkBg      = "#fbf1a9"               # Link Background
    linkHover   = "#ffffff"               # Link Hover
    textPrimary = "rgba(0, 0, 0, 0.60)"   # Nav Text
    titleColor  = "#ffffff"               # Page Title
    blockquoteBorder = "#ff6300"          # Blockquote border
    themeColor  = "#cdecffc"              # Browser Theme

  [params.typography]
    enableInterFont = true

  [params.layout]
    navWidth        = "250px"  # Sidebar width
    contentMaxWidth = "600px"  # Content max width

  [[params.menu]]
    name = "Blog"
    url  = "/blog"
  [[params.menu]]
    name = "About"
    url  = "/about"

  [params.footer]
    startYear = "2025"
```

## Example Site

See the `exampleSite/` directory for a complete working example.

To run the example:

```bash
cd exampleSite
hugo server
```
## License

MIT License - see [LICENSE](LICENSE) file for details.

## Credits

Created by [Isaac Meerleo](https://36.church)