2020.코딩일지

Git & GitHub Page 블로그 만들기 4강 - Github Page 활용하기 | T아카데미 본문

카테고리 없음

Git & GitHub Page 블로그 만들기 4강 - Github Page 활용하기 | T아카데미

개발하는라푼젤 2021. 3. 27. 20:57
728x90

.io생성 (Github Page)

https://jekyllrb.com/docs/installation/windows/

Minimall mistake 테마적용예정 (https://github.com/mmistakes/minimal-mistakes)
git clone https://github.com/mmistakes/minimal-mistakes .
클론할때 위의 .쩜의 뜻은.. 내가 만든 폴더blog_blog폴더안에 새로운 폴더만드는것이아니라 그대로 넣어달라는 뜻
맥에서는 sudo rm -r .git 먹힐텐데.. 윈도우유저는 숨김파일 .git을 삭제하면된다.
이제 로컬의 blog_blog폴더와 깃허브에 만든 egeg1212.github.io를 연결해주자

echo "# egeg1212.github.io" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/EGEG1212/egeg1212.github.io.git
git push -u origin main

git remote -v (어떤 레포와 연결되었는지 확인가능)

egeg1212.github.io 접속하면(빌드하는데 시간이 좀 걸림) !

Quick-Start Guide : https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/

jekyll 파일소개
_config.yml : 설정파일(전역변수의 느낌)
_posts : 블로그 포스팅
_pages : 개별 페이지
_includes : 글에 포함되는 개별 요소
_layouts : 글의 양식
assets : image, css 등

Liquid Tag를 알면 좋다.

http://shopify.github.io/liquid/basics/introduction/

{{ }}
Math Jax를 적용하면서 맛보기~
index.html : 표지

KR
T아카데미 Github Page


Reference

[토크ON세미나] Git & GitHub Page 블로그 만들기 4강 - Github Page 활용하기 | T아카데미
ppt 95 링크
https://youtu.be/eCv_bh-Ax-Q

Comments