2020.코딩일지

Jekyll 기반의 GitHub Page 생성(2-3)메뉴와글올리기.22:03.깃페이지만들기(Git블로그) 본문

JEKYLL BLOG_GitPage

Jekyll 기반의 GitHub Page 생성(2-3)메뉴와글올리기.22:03.깃페이지만들기(Git블로그)

개발하는라푼젤 2021. 7. 12. 04:14
728x90

메인화면(홈)의 상단메뉴부분 

_includes/navigation.html 내용지우고 복붙.

HOME / ABOUT(소개글) / ...메뉴명... / All Posts / Tag별 Posts

ABOUT내용은 about/폴더가 따로있음. index.md파일

All Posts는 archive.html

Tag별 Posts는 author_archive.html

 

_posts/폴더에 각 '태그명과 같은 하위폴더'를 만들어줘야 관리하기 편하다.

github
algorithm
voice
NLP
daily

 

각 글post마다 머릿글 내용은 아래와 같다.

---
layout: post
current: post
cover: assets/built/images/logo-algorithm.png
navigation: True
title: 컴퓨터 알고리즘 이해
date: 2021-04-16 16:40:00
tags: [algorithm]
class: post-template
subclass: "post tag-algorithm"
author: egeg1212
---

cover는 태그별로 모아볼 때, 보여지는 이미지

title은 제목

date는 작성날짜 수정하기

tags는  꼭 []대괄호안에 쓰기.

subclass는 사용하진않아서 크게 중요하진않은데... 그냥 ; 써주기;;ㅋ

author는 작성자 닉네임 적어주기.(authors.yml)

 

포스트 몇개 작성(복붙)해주고

터미널에 컴파일해주기. 

bundle exec jekyll serve

에러1. 목차 table-of-contents-algorithm.html

에러1. 목차 table-of-contents-git.html

_includes/에 복붙으로 해결.

 

 

 

 

-----ERROR

상단 메뉴 중. 

voice메뉴 404에러

NLP메뉴 배경이미지 없음? 해당글들의 이미지가 voice와 같음??

ALL POSTS메뉴 404에러 -> 2-4강의에서 해결.

TAG별 POSTS메뉴 404에러 -> 2-4강의에서 해결.

 

 

REPERENCE
https://moon9342.github.io/jekyll-struct
 

Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing

Jekyll 기반의 GitHub Page 생성은 여러 절로 구성되어 있습니다. Jekyll 기반의 GitHub Page 생성(1) - 환경설정 Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트

moon9342.github.io

 

Comments