Hugo/hugo-icarus-theme
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(Hugo/hugo-icarus-theme);
*目次 [#p070b149]
#contents
*関連ページ [#m595166b]
*参考情報 [#v53d38c2]
-blog用のモダンなテーマ
-[[digitalcraftsman/hugo-icarus-theme: Port of Ruipeng Zh...
-[[Hugo v0.55 で Hugo Icarus テーマ を使う · プログラミン...
*修正 [#ab1198cc]
-2020/06/11(木)現在、Hugo v0.55で使用すると警告が発生。
**「Page's .Hugo is deprecated」 [#kd5ce4ea]
-head.htmlの「.Hugo.Generator」を「hugo.Generator」に修正。
**「Page.RSSLink is deprecated」 [#hb9c57ea]
-「.RSSLink」をヘッダでは「.Site.Home.AlternativeOutputFo...
-head.html
{{ with .Site.Home.AlternativeOutputFormats.Get "JSON...
<link href="{{ .Permalink }}" rel="alternate" type=...
<link href="{{ .Permalink }}" rel="feed" type="appl...
{{ end }}
-profile.html
<td><a href="{{ .OutputFormats.Get "RSS" }}" target="_bl...
**「Page.UniqueID is deprecated」 [#p2d0f57f]
-article_footer.html
<a data-url="{{ .Permalink }}" data-id="{{ .File.Uni...
-これだけだと .File.UniqueID on zero object.がでるので結...
{{ $currentID := "" }}
{{ with .File }}{{ $currentID = .UniqueID }}{{ end }}
<a data-url="{{ .Permalink }}" data-id="{{ $currentID...
<i class="fa fa-share"></i>
{{with .Site.Data.l10n.articles.share}}{{.}}{{end}}
</a>
*トラブルシューティング [#pecda116]
**「 render of "page" failed: execute of template failed:...
-hugo server -Dで起動するといかのようなエラーが発生。
#pre{{
ERROR 2020/06/10 14:08:53 render of "page" failed: execut...
}}
-非常に読みづらいけど一番のポイントは最後の「.Site.Params...
-[[Hugo v0.55 で Hugo Icarus テーマ を使う · プログラミン...
**サイドバーの「RECENTS」などの文字が表示されない。 [#t00...
-data/l10n.tomlを作成する。
-exampleSiteの下にサンプルが存在する。
**font-awesomeのアイコンフォントがロードできない。 [#g56c...
-font-awesome.min.cssから以下のように指定している部分でエ...
url('../fonts/fontawesome-webfont.eot?v=4.6.3')
-とりあえずstatic/.htaccessを作成して回避。
#pre{{
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like "subdomain.example.com".
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css|css)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
}}
終了行:
&tag(Hugo/hugo-icarus-theme);
*目次 [#p070b149]
#contents
*関連ページ [#m595166b]
*参考情報 [#v53d38c2]
-blog用のモダンなテーマ
-[[digitalcraftsman/hugo-icarus-theme: Port of Ruipeng Zh...
-[[Hugo v0.55 で Hugo Icarus テーマ を使う · プログラミン...
*修正 [#ab1198cc]
-2020/06/11(木)現在、Hugo v0.55で使用すると警告が発生。
**「Page's .Hugo is deprecated」 [#kd5ce4ea]
-head.htmlの「.Hugo.Generator」を「hugo.Generator」に修正。
**「Page.RSSLink is deprecated」 [#hb9c57ea]
-「.RSSLink」をヘッダでは「.Site.Home.AlternativeOutputFo...
-head.html
{{ with .Site.Home.AlternativeOutputFormats.Get "JSON...
<link href="{{ .Permalink }}" rel="alternate" type=...
<link href="{{ .Permalink }}" rel="feed" type="appl...
{{ end }}
-profile.html
<td><a href="{{ .OutputFormats.Get "RSS" }}" target="_bl...
**「Page.UniqueID is deprecated」 [#p2d0f57f]
-article_footer.html
<a data-url="{{ .Permalink }}" data-id="{{ .File.Uni...
-これだけだと .File.UniqueID on zero object.がでるので結...
{{ $currentID := "" }}
{{ with .File }}{{ $currentID = .UniqueID }}{{ end }}
<a data-url="{{ .Permalink }}" data-id="{{ $currentID...
<i class="fa fa-share"></i>
{{with .Site.Data.l10n.articles.share}}{{.}}{{end}}
</a>
*トラブルシューティング [#pecda116]
**「 render of "page" failed: execute of template failed:...
-hugo server -Dで起動するといかのようなエラーが発生。
#pre{{
ERROR 2020/06/10 14:08:53 render of "page" failed: execut...
}}
-非常に読みづらいけど一番のポイントは最後の「.Site.Params...
-[[Hugo v0.55 で Hugo Icarus テーマ を使う · プログラミン...
**サイドバーの「RECENTS」などの文字が表示されない。 [#t00...
-data/l10n.tomlを作成する。
-exampleSiteの下にサンプルが存在する。
**font-awesomeのアイコンフォントがロードできない。 [#g56c...
-font-awesome.min.cssから以下のように指定している部分でエ...
url('../fonts/fontawesome-webfont.eot?v=4.6.3')
-とりあえずstatic/.htaccessを作成して回避。
#pre{{
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like "subdomain.example.com".
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css|css)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
}}
ページ名: