From 0ef035b89004fb158262f3c3ee7f85d8a075c3ad Mon Sep 17 00:00:00 2001 From: zzossig Date: Mon, 20 Jan 2020 15:24:58 +0900 Subject: [PATCH] update readme --- README.ko.md | 2 +- README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.ko.md b/README.ko.md index ad93052..f220679 100644 --- a/README.ko.md +++ b/README.ko.md @@ -593,7 +593,7 @@ enableBio: true # Set to false if you want to hide the bio component. --- ``` -2. 다음 경로에 카테고리 폴더와 파일을 만듭니다. `root/content/showcase/javascript/_index.md` file. (저의 경우, javascript가 카테고리 폴더입니다.) +2. 다음 경로에 폴더와 파일을 만듭니다. `root/content/showcase/javascript/_index.md` file. (javascript가 섹션 폴더가 되며 자바스크립트 쇼케이스를 모아두는 폴더가 됩니다.) ```yaml --- diff --git a/README.md b/README.md index ffa189a..dab7f6f 100644 --- a/README.md +++ b/README.md @@ -586,14 +586,14 @@ enableBio: true # Set to false if you want to hide the bio component. --- ``` -2. Make a category folder and a file at `root/content/showcase/javascript/_index.md` file. (In my case, category is a javascript) +2. Make a file at `root/content/showcase/javascript/_index.md` file. (`javascript` will be a section folder that contains javascript showcases) ```yaml --- -title: "Javascript" # category name +title: "Javascript" # section name, appear on menu bar date: 2020-01-19T21:04:11+09:00 description: Hugo theme collection # For SEO -category: theme # meta info appeared on a card bottom side. +category: theme # meta info appear on a card bottom side. enableBio: true --- ``` @@ -604,13 +604,13 @@ enableBio: true ```yaml --- -title: "My Awesome Project" # apperared on a card component +title: "My Awesome Project" # apperar on a card component date: 2020-01-19T21:13:42+09:00 -description: Hello world! This is my awesome project! # apperared on a card component +description: Hello world! This is my awesome project! # apperar on a card component weight: 1 # card ordering link: https://github.com/zzossig/hugo-theme-zzo repo: https://github.com/zzossig/hugo-theme-zzo -pinned: true # appreared on a overview page. +pinned: true # apprear on a overview page. thumb: feature3/css3.png # relative path in static/images --- ```