Jekyll
Requirement
ruby -v
gem -v
gcc -v
or g++ -v
make -v
ver. 2.2.5+
-
-
-
Install Jekyll (MacOS)
Mac OS version is used as localhost of the website.
Bundler acts as Ruby project plugin manager. Just like Composer in PHP.
To generate directory of the project:
Build the site and serve the site. When updating the file will hot rebuild the website, though the webpage need to be refreshed to see update.
File Structure
_config.yml
Site-global configuration stores here.
_drafts/
Folder stores unpublished posts, post files name formats in title.md
.
To preview with draft, use with command: jekyll serve --drafts
or jekyll build --drafts
_includes
Files here are partials that can be included with \{\% include file.ext \%\}
tag.
Can be used as modules of layout
_layouts
Files here are templates used to generate general layout of the webpage. File layout are declared in Front matter.
_posts
Files here are the content of single webpage.
Files should named in YEAR-MONTH-DAY-title.md
.
_data
Data files stores here. Extensions like .yml
, .yaml
, .json
, .csv
are supported.
Data are auto loaded, and accessible via site.data
.
E.g. File test.yml
are accessible via site.data.test
.
_sass
These are sass partials that can be imported into your main.scss
which will then be processed into a single stylesheet main.css
that defines the styles to be used by your site.
_site
Built website files stores here. Should be excluded from .gitignore
.
.jekyll_metadata
Jekyll generated file for keep track of unmodified files. Should be excluded from .gitignore
.
< page-name >.html
If the file has Front matter, it will generated as a page by Jekyll. This applies to .html
, .markdown
, .md
, .textile
in the site root directory.
Other files/folders
E.g. css
and images
folders, favicon.ico
files Will be copied verbatim to the generated site.
Last updated