hugo-theme-even/README.md

91 lines
3.9 KiB
Markdown
Raw Normal View History

2017-08-27 14:38:42 +00:00
# hugo-theme-even
2017-08-31 15:14:25 +00:00
A super concise theme for Hugo
2017-08-27 14:38:42 +00:00
2017-08-31 15:14:25 +00:00
> It's a port of the [hexo-theme-even](https://github.com/ahonn/hexo-theme-even)
2017-08-27 14:38:42 +00:00
2017-08-31 15:14:25 +00:00
[Demo](https://blog.olowolo.com/example-site/) | [中文说明](https://github.com/olOwOlo/hugo-theme-even/blob/master/README-zh.md)
2017-08-27 14:38:42 +00:00
## Screenshots
![even-showcase](https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/master/images/showcase.png)
2017-08-27 14:38:42 +00:00
2017-08-31 15:14:25 +00:00
## Installation
2017-08-27 14:38:42 +00:00
2017-08-31 15:14:25 +00:00
```bash
$ git clone https://github.com/olOwOlo/hugo-theme-even themes/even
2017-08-27 14:38:42 +00:00
```
**Important:** Take a look inside the [`exampleSite`](https://github.com/olOwOlo/hugo-theme-even/tree/master/exampleSite) folder of this theme. You'll find a file called [`config.toml`](https://github.com/olOwOlo/hugo-theme-even/blob/master/exampleSite/config.toml). **To use it, copy the [`config.toml`](https://github.com/olOwOlo/hugo-theme-even/blob/master/exampleSite/config.toml) in the root folder of your Hugo site.** Feel free to change it.
2017-08-27 14:38:42 +00:00
**NOTE:** For this theme, you should use **post** instead of **posts**, namely `hugo new post/some-content.md`.
2018-02-01 13:35:04 +00:00
## Language Support
> Translations are collected from the [`themes/even/i18n/`](https://github.com/olOwOlo/hugo-theme-even/tree/master/i18n) folder (built into the theme), as well as translations present in `i18n/` at the root of your project. The translations will be merged and take precedence over what is in the theme folder.
To use the translations, just set a correct value for [`defaultContentLanguage`](https://github.com/olOwOlo/hugo-theme-even/blob/master/exampleSite/config.toml#L3).
```toml
defaultContentLanguage = "en" # en / zh-cn / other...
```
Can also support any other languages as well. For example, to support german, create a file `/i18n/de.yaml` in the root folder of your Hugo site. For reference template you can see the [`en.yaml`](https://github.com/olOwOlo/hugo-theme-even/tree/master/i18n/en.yaml) file.
P.S. In multilingual mode, the language which currently being used to render the website will be used.
## Favicon
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
In order to customize the favicon you need to place **all** the following files in the `static` folder at the root of your site, which will overwrite those files in the [`themes/even/static/`](https://github.com/olOwOlo/hugo-theme-even/tree/master/static) folder.
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
- android-chrome-192x192.png
- android-chrome-512x512.png
- apple-touch-icon.png
- browserconfig.xml
- favicon.ico
- favicon-16x16.png
- favicon-32x32.png
- manifest.json
- mstile-150x150.png
- safari-pinned-tab.svg
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
A [favicon generator](https://www.google.com/search?q=favicon+generator) can help you generate these files.
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
## Front Matter
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
You can customize something for a single content in the content's front-matter. The [`themes/even/archetypes/default.md`](https://github.com/olOwOlo/hugo-theme-even/tree/master/archetypes/default.md) shows all available params. Copy this file in the `archetypes` folder at the root of your project will be useful.
## Shortcodes
This theme provides `center`,` right`, `left`,` music` four shortcodes, and support `center`,` right`, `left` class for the built-in `figure`. See more information from [there](https://blog.olowolo.com/example-site/post/shortcodes/).
## Theme Color
There are five built-in theme colors ( Default | Mint Green | Cobalt Blue | Hot Pink | Dark Violet ), you can config it by changing the `$theme-color-config` value in [`/src/css/_variable.scss`](https://github.com/olOwOlo/hugo-theme-even/blob/master/src/css/_variables.scss#L5-L8).
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
## Build
2017-08-27 14:38:42 +00:00
2018-02-01 13:35:04 +00:00
If you changed any file under `/src/`, you need to rebuild.
2017-08-27 14:38:42 +00:00
```bash
cd ./themes/even/src/
npm install
npm run build
2017-08-27 14:38:42 +00:00
```
2018-02-01 13:35:04 +00:00
## Update Theme
```bash
cd ./themes/even/
git pull
```
2017-08-27 14:38:42 +00:00
## License
2017-08-31 15:14:25 +00:00
Released under the [MIT](https://github.com/olOwOlo/hugo-theme-even/blob/master/LICENSE.md) License.
2017-08-27 14:38:42 +00:00
2017-08-31 15:14:25 +00:00
## Acknowledgements
2017-08-27 14:38:42 +00:00
2017-08-31 15:14:25 +00:00
- [ananke](https://github.com/budparr/gohugo-theme-ananke)
- [hexo-theme-even](https://github.com/ahonn/hexo-theme-even)
- [hugo-nuo](https://github.com/laozhu/hugo-nuo)