[Github] Blog 만들기 #6

lilclown·2022년 6월 17일

Github

목록 보기
6/10
post-thumbnail

Youtube

EP07. 카테고리 기능, #태그 기능 추가하기




Category, Tag

_config.yml jekyll-archives 주석 풀기

  • Before
# jekyll-archives:
#   enabled:
#     - categories
#     - tags
#   layouts:
#     category: archive-taxonomy
#     tag: archive-taxonomy
#   permalinks:
#     category: /categories/:name/
#     tag: /tags/:name/
  • After
jekyll-archives:
  enabled:
    - categories
    - tags
  layouts:
    category: archive-taxonomy
    tag: archive-taxonomy
  permalinks:
    category: /categories/:name/
    tag: /tags/:name/

pages 폴더, category-archive.md, tag-archive.md 파일 생성

  • category-archive.md
---
title: "Category"
layout: categories
permalink: /categories/
author_profile: true
sidebar_main: true
---
  • tag-archive.md
---
title: "Tag"
layout: tags
permalink: /tags/
author_profile: true
sidebar_main: true
---

  • Before
main:
  - title: "Quick-Start-Guide"
    url: ~~~
  • After
main:
  - title: "Category"
    url: /categories/
  - title: "Tag"
    url: /tags/

Category, Tag 적용 방법

  • 적용 방법
---
title: "GitHub blog, #6"
excerpt: "Category, Tag 추가"
categories: GitHub Blog
tag: GitHub
---
  • 다수 적용 방법_[]추가
---
title: "GitHub blog, #6"
excerpt: "Category, Tag 추가"
categories: [GitHub Blog]
tag: [GitHub, Blog]
---
profile
Tomorrow better than today, Laugh at myself

0개의 댓글