YinYang is a black-white theme for Hugo.
- minimalist
- multi-language support
- disqus support
- SEO Optimization
From the root of your site:
git clone git@github.com:joway/hugo-theme-yinyang.git themes/yinyang
Change config.toml
:
theme = "yinyang"
[params]
headTitle = "Joway Wang"
If there is no headTitle
in params, use .Site.Author.name
.
Set your main section:
[params]
mainSections = ["posts"]
[languages]
[languages.en]
contentDir = "content/en"
languageName = "English"
weight = 1
[languages.cn]
contentDir = "content/cn"
languageName = "Chinese"
weight = 2
Then your posts files should be put into content/en
or content/cn
.
[[params.socials]]
name = "About Me"
link = "https://joway.io"
[[params.socials]]
name = "Github"
link = "https://github.com/joway"
[params]
extraHead = '<script src="xxxx.js"></script>'
baseURL = "https://blog.joway.io/"
languageCode = "en-us"
title = "Joway's Blog"
theme = "yinyang"
DefaultContentLanguage = "cn"
[author]
name = "Joway"
homepage = "https://joway.io/"
[languages]
[languages.en]
contentDir = "content/en"
languageName = "English"
weight = 1
[languages.cn]
contentDir = "content/cn"
languageName = "Chinese"
weight = 2
[params]
mainSections = ["posts"]
headTitle = "Joway Wang"
disqus = "joway" # disqus account name
extraHead = '<script async src="https://www.googletagmanager.com/gtag/js?id=UA-xxx"></script>'
[[params.socials]]
name = "About Me"
link = "https://joway.io"
[[params.socials]]
name = "Github"
link = "https://github.com/joway"