fonorobert / hemingway2

Really minimal blog theme for hugo.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hemingway2

Hemingway2 is a really minimal blog theme for hugo.

Getting Started

Clone this repository to your hugo theme directory.

mkdir themes
cd themes
git clone https://github.com/beli3ver/hemingway2.git

Configuration

Take a look in the exampleSite folder.

This directory contains an example config file and the content for the demo. It serves as an example setup for your documentation.

Copy the config.toml in the root directory of your website. Overwrite the existing config file if necessary.

config.toml:

baseurl = "https://example.com"
languageCode = "en"
title = "Hemingway2"
theme = "hemingway2"
copyright = "&copy; <a href=\"https://github.com/beli3ver\">Malte Kiefer</a> 2016"
disqusShortname = "shortname"
googleAnalytics = ""
description = "Your personal description"
keywords = ["keyword1", "keyword2"]

[taxonomies]
tag = "tags"
category = "categories"

[params]

[params.highlight]
style = "github"
languages = ["go", "dockerfile"]

[[params.social]]
url = "https://github.com/beli3ver"
fa_icon = "fa-github"

[[params.social]]
url = "https://gitlab.com/beli3ver"
fa_icon = "fa-gitlab"

[[params.social]]
url = "https://twitter.com/malkie16"
fa_icon = "fa-twitter"

[[params.social]]
url = "https://telegram.me/beli3ver"
fa_icon = "fa-telegram"

[[params.social]]
url = "/index.xml"
fa_icon = "fa-rss"

Build

hugo server

You can go to localhost:1313 and this theme should be visible.

License

Hemingway2 is licensed under the MIT License.

Author

Malte Kiefer

About

Really minimal blog theme for hugo.

License:MIT License


Languages

Language:HTML 70.9%Language:CSS 23.2%Language:JavaScript 5.9%