1. Github Blog 생성

Reference


2. Posting 해보기

Reference


3. 테마 적용

사용 테마 : minimal-mistakes

  1. fork 후 repository 이름을 USERNAME.github.io로 변경
  2. 불필요한 파일 및 폴더 제거

    .editorconfig
    .gitattributes
    .github
    /docs
    /test
    CHANGELOG.md
    minimal-mistakes-jekyll.gemspec
    README.md
    screenshot-layouts.png
    screenshot.png

  3. 필요한 폴더 생성

    _posts
    _pages
    _drafts

  4. Gemfile 수정

    source “https://rubygems.org”

    gem “jekyll”, “~> 3.5”
    gem “minimal-mistakes-jekyll”
    gem “kramdown-parser-gfm”

  5. 라이브러리 의존성 설치
    At local repository

    $ bundle install

  6. 적용 확인

    bundle exec jekyll serve

  7. 원격 서버에 push

    git add .
    git commit -m "your_comment"
    git push

Reference

댓글남기기