You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kailash Nadh 30220f02da
Merge pull request #15 from fteem/add-table-styles
преди 4 години
archetypes feat: initial implementation преди 5 години
exampleSite Add markdown syntax example post преди 4 години
images Fix screenshots преди 4 години
layouts Add dark mode toggle to site header преди 4 години
static Merge pull request #15 from fteem/add-table-styles преди 4 години
.gitignore chore: add gitignore преди 4 години
LICENSE.md Fork ezhil into ink theme преди 4 години
README.md Add multilingual month support преди 4 години
netlify.toml feat: add netlify build config преди 5 години
theme.toml Fix theme's URL преди 4 години

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

Licensed under the MIT license.