ブログができるまで
過去
Qiitaで記事を書き始めていましたが、
そのうち、情報が散在しているので一つにまとめたいなと思うことが出てきました。
準備
ドメイン取得
あまり手間を掛けたくなかったのでムームードメインか、お名前.comかで悩んでいたのですが、
ドメインプロテクション(管理画面にログインする際のワンタイムキー発行)等の機能で、
お名前.comにしました。
ただ1年間の更新が終わるまでにGoogle Domainへ移行することを試みようと思います
費用の内訳
Webホスティング基盤
- Free Plan
- 個人的に2021年にアカウント開設して放置
- https://www.netlify.com/
- Free Plan( 100 GB bandwidth, 300 build minutes) を超えるようなことがあればVercel移行も考えます
- https://www.netlify.com/
ブログベース
- HTML/CSSに手間を掛けたくない
- MarkDownで書けると嬉しい
- https://gohugo.io/
- ツールインストールも容易(Win/Mac)
- コマンドラインで制御可能
- https://gohugo.io/commands/hugo_new_site/
hugo new site ${Directory-Name}
で初期設定hugo new post/*.md
で新規記事hugo serve
でlocalhost:1313
のローカル確認hugo
で./${Directory-Name}/public
に静的サイトを生成- この
public
フォルダを公開指定するだけ
- この
- https://gohugo.io/commands/hugo_new_site/
- https://gohugo.io/
ブログテーマ
- https://github.com/Vimux/Mainroad
- 後述するカスタムURLを定義するため、個人用にFork
- 見出しは
##
(h2) か###
(h3) でしか表現できないので注意
ブログコメント
- ブログテーマで簡単に取り込み可能
アクセス分析
- (簡易) Google Analytics
- (詳細) Google Tag Manager
ブログ内検索
- Hugo CodexにGoogle 検索をカスタマイズできるものがあったけど使ってみて微妙だったのでカスタム検索を導入
Twtitter
- Twitterの表示、シェアボタン、リンクを取得
- https://publish.twitter.com/#
${Directory-Name}/themes/mainroad/layouts/partials/widgets/twitter.html
- 自身のTwitterアカウントを入力して取得したURLを転記
${Directory-Name}/themes/mainroad/layouts/_default/single.html
- Twitterのシェアボタンを出力
- https://publish.twitter.com/#
- Facebookのシェアボタン、リンクを取得
- https://developers.facebook.com/docs/plugins/like-button?locale=ja_JP
${Directory-Name}/themes/mainroad/layouts/_default/single.html
- Facebookのシェアボタンを出力
- https://developers.facebook.com/docs/plugins/like-button?locale=ja_JP
- LinkedInのシェアボタン、今回は採用を見送り、LinkedInを本格活用し始めたら再考
- https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/plugins?context=linkedin/consumer/context
${Directory-Name}/themes/mainroad/layouts/_default/single.html
- LinkedInのシェアボタンを出力
- https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/plugins?context=linkedin/consumer/context
そのほかシェアボタン
- テンプレートをHugo Codexにて紹介
- ブログ設定
- 設定ファイル(config.toml)
baseURL = '<https://midnight480.com/>'
title = ""
languageCode = 'ja-JP'
DefaultContentLanguageInSubdir = true
paginate = "10" # Number of posts per page
theme = "mainroad"
disqusShortname = ""
googleAnalytics = ""
[Author] # Used in authorbox
name = "midnight480"
bio = ""
avatar = ""
[markup.goldmark.renderer] #折りたたみ <details>
unsafe = true
[[Menus.main]]
Name = "TOP"
URL = "/"
weight = 1
[[Menus.main]]
Name = "Categories"
URL = "/categories/"
weight = 2
[[Menus.main]]
Name = "TAGS"
URL = "/tags/"
weight = 3
[[Menus.main]]
Name = "about"
URL = "/about/"
weight = 4
[[Menus.footer]]
Name = "Privacy Policy"
URL = "/privacy/"
[Params]
description = "" # Site description. Used in meta description
copyright = "midnight480.com" # Footer copyright holder, otherwise will use site title
opengraph = true # Enable OpenGraph if true
schema = true
twitter_cards = true
readmore = true
authorbox = true
toc = true
pager = true
post_meta = ["author", "date", "categories"]
# mainSections = ["post", "blog", "news"] # Specify section pages to show on home page and the "Recent articles" widget
dateformat = "2006-01-02"
mathjax = true # Enable MathJax
mathjaxPath = "<https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js>" # Specify MathJax path
mathjaxConfig = "TeX-AMS-MML_HTMLorMML" # Specify MathJax config
googleFontsLink = "<https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap>"
customCSS = ["css/custom.css"]
subtitle = "" # Deprecated in favor of .Site.Params.logo.subtitle
highlightColor = ""
images = [""]
[Params.style.vars]
highlightColor = "" # Override highlight color
# Override font-family sets
# Take care of different quotes OR escaping symbols in these params if necessary
fontFamilyPrimary = "'Open Sans', Helvetica, Arial, sans-serif"
# Secondary font-family set responsible for pre, code, kbd, and samp tags font
fontFamilySecondary = "SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace"
[Params.logo]
# image = "" # Logo image. Path relative to "static"
title = "" # Logo title, otherwise will use site title
subtitle = "" # Logo subtitle
[Params.thumbnail]
visibility = ["list", "post"] # Control thumbnail visibility
[Params.sidebar]
home = "right"
list = "right"
single = true
widgets = ["recent", "categories", "social", "twitter"]
[Params.widgets]
recent_num = 5 # Set the number of articles in the "Recent articles" widget
categories_counter = true # Enable counter for each category in "Categories" widget
tags_counter = true # Enable counter for each tag in "Tags" widget
[Params.widgets.social]
github = "midnight480"
#facebook = "username"
twitter = "midnight480"
#instagram = "username"
linkedin = "midnight480"
#telegram = "username"
#gitlab = "username"
#bitbucket = "username"
#email = "[email protected]"
- 基本的にはmainroadのリポジトリにあるテンプレート通りで設定可能で、以下の定義がないと折りたたみ表示タグが有効にならなかった。不要であれば定義不要。
[markup.goldmark.renderer] #折りたたみ <details>
unsafe = true
折りたたみ表示タグ
<details>
<summary>タイトル</summary>
aaa
![aaa](https://)
</details>
参考
- Hugo によるブログ作成と mainroad テーマのカスタマイズ
- hugoを使って爆速でブログを作成する
- このBlogを公開するまでのエトセトラ
- HUGO で独自 Shortcode を作る
- estimate read time calc hugo.md
- Getting the character count
- Hugoで読了時間や文字数表示がおかしい
- Hugo Codex