Быстрый старт

Обновить все пакеты в системе

sudo apt-get -y update && apt-get -y upgrade

Установить в систему Ruby + Jekyll без документации

sudo apt-get install --no-install-recommends ruby ruby-dev make g++
sudo gem install jekyll --no-rdoc --no-ri
sudo gem install jekyll-tagging --no-rdoc --no-ri
sudo gem install RedCloth --no-rdoc --no-ri
sudo gem install therubyracer --no-rdoc --no-ri

Создать каталог для работы с будущим сайтом используя jekyll-bootstrap

cd ~
git clone https://github.com/plusjade/jekyll-bootstrap.git you.blog.domain.name
cd you.blog.domain.name

Установить Jekyll Bootstrap skin (данный блог использует theme-twitter)

rake theme:install git="https://github.com/jekyllbootstrap/theme-twitter.git"
# rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git"
# rake theme:switch name="the-program"
#
# In file _config.yml change pygments to highlighter
# Set correct blog title and author settings
# For disable categories remove file categories.html

Запустить Jekyll

jekyll serve --port 4001 -w

Структура каталогов

   .
    |-- _config.yml
    |-- _includes
    |-- _layouts
    |   |-- default.html
    |   |-- post.html
    |-- _posts
    |   |-- 2011-10-25-open-source-is-good.markdown
    |   |-- 2011-04-26-hello-world.markdown
    |-- _site
    |-- index.html
    |-- assets
        |-- css
            |-- style.css
        |-- javascripts

Полезные ссылки



Published

28 June 2014

Tags