light-hugo/README.md

39 lines
1.2 KiB
Markdown
Raw Normal View History

2016-11-02 23:10:49 -04:00
# light-hugo
This a responsive hugo theme using [normalize.css](https://github.com/necolas/normalize.css/) ([sass](https://github.com/JohnAlbin/normalize-scss)). 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](https://github.com/mixu/markdown-styles).
## Config
The following config options are available for displaying custom content...
```toml
2016-11-09 16:37:28 -05:00
baseurl = "https://example.org/"
languageCode = "en-us"
theme = "light-hugo"
title = "Light Hugo"
author = "John Doe"
copyright = "© Copyright 2016 John Doe"
2016-11-02 23:10:49 -04:00
[Params]
2016-11-09 16:37:28 -05:00
description = "Describe your website"
email = "john@example.org"
github = "tblyler"
twitter = "tonyblyler"
linkedin = "johndoe"
facebook = "johndoe"
logo = "/images/logo.png"
2016-11-02 23:10:49 -04:00
```
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.