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 を作成した。

<script>
'use script';
{
const githubpage = document.getElementById('githubpage-svg');
const profile = document.getElementById('profile-img');
profile.addEventListener('click', ()=>{
profile.classList.remove('active');
githubpage.classList.add('active');
});
githubpage.addEventListener('click', ()=>{
githubpage.classList.remove('active');
profile.classList.add('active');
});
}
</script>

残す改修予定

  • add Tags
  • AMP の導入。