% podman run -d --rm -v $PWD:/srv/jekyll -p 4000:4000 --name jekyll quay.io/tnk4on/jekyll sleep inf
% podman exec -it jekyll bash
初回のみ
# jekyll new --skip-bundle .
- https://pages.github.com/versions/
gem "github-pages", "~> GITHUB-PAGES-VERSION", group: :jekyll_plugins
gem "github-pages", "~> 228", group: :jekyll_plugins
# bundle install
# bundle exec jekyll serve
gem自体を更新する場合に実行
# bundle update github-pages
- ファイル変更→アップデート
# ctrl + c
# bundle exec jekyll serve
下記を_config.ymlに追記
defaults:
- scope:
path: ""
values:
image: /assets/images/default-card.png
/assets/css/style.scss
に下記を追記
.profile-picture {
height: 85px;
width: 85px;
position: relative;
margin: -10px 0 0 15px;
float: right;
border-radius: 50%;
p & {
padding: 0 0 0 0;
margin: 0 0 0 4px;
}
@media print, screen and (min-width: 961px) {
display: none !important;
}
}
index.md
に<img class="profile-picture" src=" "
を追加
テーマ未設定の GitHub Pages に Google Analytics を設定する
% podman machine ssh
$ sudo sh -c "echo fs.inotify.max_user_watches=524288 >> /etc/sysctl.conf"
$ sudo sysctl -p