Go to file
Kailash Nadh d3dad55ecb Add pagination to all post types. 2022-01-09 12:59:42 +05:30
archetypes feat: initial implementation 2019-04-10 02:29:17 +05:30
exampleSite Add twitter/opengraph embed tag 2021-05-15 13:21:20 +02:00
images Remove .DS_Store 2020-12-25 01:46:09 +09:00
layouts Add pagination to all post types. 2022-01-09 12:59:42 +05:30
static Fix site title lineheight and spacing 2021-01-21 18:37:03 +05:30
.gitignore chore: add gitignore 2019-10-22 16:02:29 +05:30
LICENSE.md Fork ezhil into ink theme 2019-11-19 11:52:48 +05:30
README.md Typo in Readme 2020-08-24 04:09:12 +05:30
netlify.toml feat: add netlify build config 2019-04-20 00:47:22 +05:30
theme.toml Fix theme's URL 2019-11-25 08:53:11 +05:30

README.md

Ink

Crisp, minimal personal website and blog theme Hugo. Forked from Ezhil.

Demo

View demo Screenshot

Features

  • Google Analytics integration
  • Syntax highlighting
  • Twitter cards and opengraph tags support
  • Disqus comments
  • RSS feeds
  • Custom CSS/JS
  • Multilingual months support

Installation

cd into your hugo site's root directory and:

cd themes
git clone https://github.com/knadh/hugo-ink.git

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 directory. 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

Licensed under the MIT license.