GithubPages のメジャーアップデートをした。

/
#githubpages#jekyll

What I did

  • Introduce IE Buster
  • Update Ruby version from 2.5.1
  • Make Dark-theme better
  • Add top-image and githubpage-svg

IE Buster

リンク: IE Buster

Update Ruby-version to 2.7.0

Ruby 用に作成している仮想環境のアップデートの序に Ruby のバージョンを最新版に上げた。

Dark theme

前回までは、基本グレーで背景に青、差し色でオレンジを使用していた。

Add top-image and others

トップ画面にプロフィール画像を追加し、またサイトリンク QR コードを表示されるように、JavaScript を作成した。

undefined
1
<script>
2
'use script';
3
{
4
const githubpage = document.getElementById('githubpage-svg');
5
const profile = document.getElementById('profile-img');
6
7
profile.addEventListener('click', ()=>{
8
profile.classList.remove('active');
9
githubpage.classList.add('active');
10
});
11
12
githubpage.addEventListener('click', ()=>{
13
githubpage.classList.remove('active');
14
profile.classList.add('active');
15
});
16
}
17
</script>

残す改修予定

  • add Tags
  • AMP の導入