|
1 month ago | |
---|---|---|
archetypes | 2 years ago | |
images | 1 year ago | |
layouts | 1 month ago | |
static | 1 year ago | |
.gitignore | 1 year ago | |
LICENSE.md | 1 year ago | |
README.md | 6 months ago | |
theme.toml | 1 month ago |
Crisp, minimal personal website and blog theme Hugo. Forked from Ink.
cd into your hugo site's root directory and:
cd themes
git clone https://code.loranger.xyz/rob/inked.git
For more information read the official setup guide of Hugo.
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
to control which page types are excluded from recent posts.
---
title: "About"
date: 2019-04-19T21:37:58+05:30
type: "page"
---
This is some static page where you can write about yourself.
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.
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
Licensed under the MIT license.