import simple texture into existing jekyll app
prerequisite
- install jekyll and bundler
gem install jekyll bundler
- an jekyll app
jekyll new YOUR_JEKYLL_APP
- enter the diretory
cd YOUR_JEKYLL_APP
steps
-
download simple-texture repo
- remove existing
404.html
,about.md
, andindex.md
rm 404.html about.md index.md
- remove existing
Gemfile.lock
rm Gemfile.lock
-
copy everything in
start-kit
folder downloaded from simple-texture repo in the root directory of jekyll app -
copy everything in
_layout
folder in the_layout
of jekyll app -
copy everything in
_include
folder into the_include
of jekyll app -
run
bundle install
-
run
bundle exec jekyll serve
to start app - start http://localhost:4000