ink-free

Author: chollinger93 on December 28, 2024

BlogRSSDark
ink-free
ink-freeink-freeink-freeink-free
Free
MIT

Ink-Free

Crisp, minimal personal website and blog theme Hugo, designed for a collaborative, open-source, privacy conscious blog.

Forked from knadh with custom adjustments. Originally forked from Ezhil.

Ink-Free vs Hugo-Ink

This repository is a purely local (i.e., no CDNs1), simplified version of hugo-ink with several simplifications for the sake of privacy:

As well as some additional features:

And some bugfixes:

Run the example

cd exampleSite
hugo serve  --themesDir ../..

Features

Installation

cd into your hugo site’s root directory and:

cd themes
git submodule add https://github.com/chollinger93/ink-free

For more information read the official setup guide of Hugo.

Content type

You can specify content type with field type in your content. For example static pages can be set as type page which are excluded from recent posts and all posts page. You can use site params mainSections and disableDisqusTypes to control which page types are excluded from recent posts and Disqus comments respectively.

---
title: "About"
date: 2019-04-19T21:37:58+05:30
type: "page"
---

This is some static page where you can write about yourself.

Language Settings for the month

Due to the currently unavailable feature for multilingual dates in .Date from Go. It is possible to create a month.yaml in the data folder of your Hugo site root directoy. There is also an example file in exampleSite/data/.

cat > month.yaml << EOF
1: "Jan"
2: "Feb"
3: "Mar"
4: "Apr"
5: "May"
6: "Jun"
7: "Jul"
8: "Aug"
9: "Sep"
10: "Oct"
11: "Nov"
12: "Dec"
EOF

Credits

License

Licensed under the MIT license.

Footnotes

  1. Note that the Feather CDN can still be enabled, but you can also host it statically.