- Ruby 3.2.2-1 버전 다운로드: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.2-1/rubyinstaller-devkit-3.2.2-1-x64.exe
- 설치 옵션: 3 - MSYS2 and MINGW development toolchain 선택
gem install bundler
gem install bundle
bundle install
bundle update
bundle exec jekyll serve
Click Use this template button above for the quickest method of getting started with the Minimal Mistakes Jekyll theme.
Contains basic configuration to get you a site with:
- Sample posts.
- Sample top navigation.
- Sample author sidebar with social links.
- Sample footer links.
- Paginated home page.
- Archive pages for posts grouped by year, category, and tag.
- Sample about page.
- Sample 404 page.
- Site wide search.
Replace sample content with your own and configure as necessary.
If you have a question about using Jekyll, start a discussion on the Jekyll Forum or StackOverflow. Other resources:
- Ruby 101
- Setting up a Jekyll site with GitHub Pages
- Configuring GitHub Metadata to work properly when developing locally and avoid
No GitHub API authentication could be found. Some fields may be missing or have incorrect data.
warnings.
minimal-mistakes ├── _data # data files for customizing the theme | ├── navigation.yml # main navigation links | └── ui-text.yml # text used throughout the theme's UI ├── _includes | ├── analytics-providers # snippets for analytics (Google and custom) | ├── comments-providers # snippets for comments | ├── footer | | └── custom.html # custom snippets to add to site footer | ├── head | | └── custom.html # custom snippets to add to site head | ├── feature_row # feature row helper | ├── gallery # image gallery helper | ├── group-by-array # group by array helper for archives | ├── nav_list # navigation list helper | ├── toc # table of contents helper | └── ... ├── _layouts | ├── archive-taxonomy.html # tag/category archive for Jekyll Archives plugin | ├── archive.html # archive base | ├── categories.html # archive listing posts grouped by category | ├── category.html # archive listing posts grouped by specific category | ├── collection.html # archive listing documents in a specific collection | ├── compress.html # compresses HTML in pure Liquid | ├── default.html # base for all other layouts | ├── home.html # home page | ├── posts.html # archive listing posts grouped by year | ├── search.html # search page | ├── single.html # single document (post/page/etc) | ├── tag.html # archive listing posts grouped by specific tag | ├── tags.html # archive listing posts grouped by tags | └── splash.html # splash page ├── _sass # SCSS partials ├── assets | ├── css | | └── main.scss # main stylesheet, loads SCSS partials from _sass | ├── images # image assets for posts/pages/collections/etc. | ├── js | | ├── plugins # jQuery plugins | | ├── vendor # vendor scripts | | ├── _main.js # plugin settings and other scripts to load after jQuery | | └── main.min.js # optimized and concatenated script file loaded before ├── _config.yml # site configuration ├── Gemfile # gem file dependencies ├── index.html # paginated home page showing recent posts └── package.json # NPM build scripts