hydejack-pro-9.1.6
다운로드 폴더에 압축해제
cp -r starter-kit starter-kit-github
docker run \
-it \
-v /home/bert/Downloads/hydejack-pro-9.1.6/starter-kit-github:/hydejack \
-v /home/bert/Downloads:/Downloads \
--network host \
--name hydejack \
ruby:latest /bin/bash
docker start hydejack
docker exec -it start /bin/bash
cd /Downloads/rubygems-3.4.19
gem update --system
ruby setup.rb
Install Bundler
gem install bundler
cd /hydejack/
git config --global --add safe.directory /hydejack
bundle install
bundle exec jekyll serve
d:
cd JobSearch\hydejack_ghb
bundle exec jekyll serve
blog
projects
grid
list
resume
_config.yml
사이드바
컬렉션 레이아웃으로 진입할 메뉴
menu:
- title: OtherProjects
url: /other-collection/
새로운 컬렉션
컬렉션 파일을 모을 파일명과 연결
collections:
other_projects:
# Make sure the permalink path is different!
permalink: /other-projects/:path/
output: true
other_collection.md
컬렉션 레이아웃
---
layout: projects
title: Other Projects*
show_collection: other_projects
---
_other_projects
.md
파일 작성_config
수정collections:
featured_categories:
permalink: /tech/:name/
output: true
# Format of the permalinks
permalink: /tech/:categories/:year-:month-:day-:title/
# Pagination configuration (used by the `blog` layout)
paginate: 10
paginate_path: /tech/:num/
_featured_categories
에 추가할 category를 위한 .md
파일 추가assets > img >
이미지 저장 폴더 추가category="perception"
touch "_featured_categories/$category.md"
mkdir -p "$category"/_posts "assets/img/$category"