Misa's Robust was modified by zzzmisa based on the original Robust created by Daisuke Tsuji and maintained by Ress.
- 機能追加
- YouTubeとiframe用のショートコードを追加
- authorセクションでメールアイコン、ホームページアイコンを表示できるよう機能追加
- フッターに任意のコンテンツ(例えば Notice | Privacy Policy)を追加できるよう機能追加
- 機能修正
- TwitterアイコンをXに変更
- Google Analyticsのサポートを廃止し、代わりにGoogle Tag Managerをサポート
- Font Awesomeのバージョンをv6.4.2にアップデート
- タグの表示件数を10件から50件に変更
- 記事の行間を
line-height: 1.5rem
からline-height: 2rem
に変更 - 階層リストに入っていたマージンを削除し、
line-height: 2rem
で統一
↓↓ここからオリジナルのREADME↓↓
This theme is maintained by Ress.
This is the grid based theme for Hugo.
Hugo :: A fast and modern static website engine
You need the Hugo extended
version.
- Accelerated Mobile Pages Project a.k.a AMP supported
- Responsive design
- Google Analytics
- Thumbnail
- Share button
- Structured data(Article and Breadcrumb)
- Twitter cards
- OGP
- Disqus
- Syntax Highlight
- Show
IsDraft
.
$ cd themes
$ git clone https://github.com/dim0627/hugo_theme_robust.git
baseurl = "https://example.com/"
title = "SiteTitle"
theme = "hugo_theme_robust"
googleAnalytics = "UA-XXXXXXXX-XX" # Optional
disqusShortname = "XYW"
[params]
description = "This is site description"
dateformat = "Jan 2, 2006" # Optional
# Fonts settings.
googlefonts = "https://fonts.googleapis.com/css?family=Lobster|Lato:400,700" # Optional, Include google fonts.
fontfamily = "Lato,YuGothic,'Hiragino Kaku Gothic Pro',Meiryo,sans-serif" # Optional, Override body font family.
logofontfamily = "Lobster, cursive" # Optional, Override logo font.
enableHighlight = true # highlight.js option
[params.author]
thumbnail = "images/author.jpg"
name = "John Doe"
description = "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p><p>sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>"
facebook = "https://www.facebook.com/daisuke.tsuji.735"
twitter = "https://twitter.com/dim0627"
github = "https://github.com/dim0627"
[outputs]
page = [ "HTML", "AMP" ] # if you want AMP enable.
+++
date = "2016-09-28T17:00:00+09:00"
title = "Article title here"
thumbnail = "images/thumbnail.jpg" # Optional, referenced at `$HUGO_ROOT/static/images/thumbnail.jpg`
toc = true # Optional
+++
{{< 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" >}}
Supported development mode.
env HUGO_ENV="DEV" hugo server --watch --buildDrafts=true --buildFuture=true -t robust
This mode is
- Not show Google Analytics tags.
- Show
WordCount
.
And set {{ if ne (getenv "HUGO_ENV") "DEV" }} Set elements here. {{ end }}
if you want to place only in a production environment.