tinyce

Tinyce is a general purpose hugo theme.

Tinyce

Tinyce is a general-purpose Hugo theme.

screenshot - 08092014 - 07 02 07 pm

You can check the live version here.

Getting started

Once you have Hugo up and running, you must:

Create a Hugo project:

$ hugo new site my-site

And then install tinyce:

$ cd themes
$ git clone https://github.com/roperzh/tinyce-hugo-theme

If you are using Hugo v0.11 or below, please read this

Now you can set tinyce as the default theme for your site by adding this line in the config file:

theme = "tinyce-hugo-theme"

Or you can start the server with:

hugo server --theme=tinyce-hugo-theme --buildDrafts --watch

Setting Variables

Tinyce needs a custom archetype in order to work properly, behind the covers you will only need to define two new variables in the front matter section of your contents.

Example

+++
Categories = ["Development", "GoLang"]
Description = "My short description"
Tags = ["Development", "golang"]
color = "green"
icon = "heart"
title = "Go is cool"
date = 2014-08-09T05:04:40Z
+++

Usage with Hugo v0.11 and below

The latest version of the theme includes some features bundled with Hugo v0.12, if you are using an old version, please install tinyce like this:

$ cd themes
$ git clone https://github.com/roperzh/tinyce-hugo-theme
$ cd tinyce-hugo-theme
$ git checkout 08a497

That’s it!

Contributing

  1. Fork it

  2. Create your feature branch (git checkout -b my-new-feature)

  3. Commit your changes (git commit -am 'Add some feature')

  4. Push to the branch (git push origin my-new-feature)

  5. Create new Pull Request