Go to file
Bjørn Erik Pedersen e7733dbac5 Rename RSSlink to RSSLink
The former will be deprecated and eventually removed from Hugo.

Note: Currently both of them exist in Hugo, which is the reason for the cleanup.
2016-11-17 09:21:18 +01:00
archetypes Initial commit 2016-11-02 23:10:49 -04:00
exampleSite Update README with all config options 2016-11-09 16:37:28 -05:00
images Add screenshots for themes.gohugo.io 2016-11-10 13:59:38 -05:00
layouts Rename RSSlink to RSSLink 2016-11-17 09:21:18 +01:00
modules Initial commit 2016-11-02 23:10:49 -04:00
scss Remove crappy underline from social svg links 2016-11-11 14:13:32 -05:00
static Remove crappy underline from social svg links 2016-11-11 14:13:32 -05:00
.gitignore Initial commit 2016-11-02 23:10:49 -04:00
.gitmodules Initial commit 2016-11-02 23:10:49 -04:00
build.sh Update build.sh to have clean option 2016-11-03 10:06:40 -04:00
LICENSE Initial commit 2016-11-02 23:04:12 -04:00
README.md Update README with all config options 2016-11-09 16:37:28 -05:00
theme.toml Fix bad links for license and homepage 2016-11-10 16:08:01 -05:00

light-hugo

This a responsive hugo theme using normalize.css (sass). It is material in nature and very bare boned. No javascript is used. Just straight up HTML and CSS.

Page support

There is support for the following types...

  • Posts
  • Pages

The posts will be treated as blogs and pages will be treated with a similar fashion. There is a GitHub css theme used for the markdown generated for posts and pages from markdown styles.

Config

The following config options are available for displaying custom content...

baseurl = "https://example.org/"
languageCode = "en-us"
theme = "light-hugo"

title = "Light Hugo"
author = "John Doe"
copyright = "© Copyright 2016 John Doe"

[Params]
  description = "Describe your website"
  email = "john@example.org"
  github = "tblyler"
  twitter = "tonyblyler"
  linkedin = "johndoe"
  facebook = "johndoe"
  logo = "/images/logo.png"

You can also append your own <head> and footer elements (just before the </body>). Do so by creating layouts/partials/foot.html and layouts/partials/head.html files in your hugo directory before compilation.