This theme was created based on Re Robust.
- Responsive design
- AMP (Accelerated Mobile Pages)
- Google Analytics
- Disqus
- Social Share (Hatena Bookmark, Twitter, Facebook, Google+, Pocket, LINE)
- Lazy Loading Images
- Atom Feed
cd path/to/
git submodule add https://github.com/39e/hugo-wolke themes/wolke
baseurl = "https://example.com/"
title = "SiteTitle"
theme = "wolke"
googleAnalytics = "UA-XXXXXXXX-XX" # Optional
disqusShortname = "XYW" # Optional
[params]
description = "This is site description"
dateformat = "Jan 2, 2006" # Optional
[params.author]
name = "John Doe"
thumbnail = "img/author.png"
description = "This is author description."
facebook = "XXXX"
twitter = "XXXX"
github = "XXXX"
[outputs]
page = ["HTML", "AMP"] # if you want AMP enable.
[mediaTypes]
[mediaTypes."application/atom+xml"]
suffixs = ["xml"]
[outputFormats.Atom]
mediaType = "application/atom+xml"
baseName = "atom" # generated file = <baseName>.<mediaType."application/atom".suffix> = atom.xml
isPlainText = false
[outputs]
home = ["HTML", "RSS", "ATOM"] # default = ["HTML", "RSS"]
上記の内容を追加する必要があります
一部 shortcode は公式のものを使用しています。
{{< img src="images/image.jpg" w="600" h="400" >}}
{{< img src="images/image.jpg" w="600" h="400" caption="Referenced from wikipedia." href="https://en.wikipedia.org/wiki/Lorem_ipsum" >}}
{{< gist id="gistID" file="file" >}}
{{< twitter id >}}
{{< youtube id="youtubeID" >}}
{{< youtube id="youtubeID" autoplay="true" >}}
各シェアボタンを非表示するには以下のようにしてください。
[Params]
# はてなブックマーク
socialShareHatena = false
# Twitter
socialShareTwitter = false
# Facebook
socialShareFacebook = false
# Google Plus
socialShareGoogleplus = false
# Pocket
socialSharePocket = false
# LINE
socialShareLine = false
シェアボタン自体を非表示にするには以下のようにすることで可能です。
[Params]
socialShare = false
特定のページのみシェアボタンを非表示にするには以下のようにすることで可能です。
- TOML Front-matter
+++
socialShare = false
+++