- rbenv (or anyenv )
- bundler gem
ruby のバージョンは2.2.0が設定されています。
$ bundle install --path=vendor/bundle
$ bundle exec jekyll s -o # サーバ起動
$ bundle exec jekyll s --force_polling -o # 動かなかったら(Bash on windows等)
- 画像 ->
images/
- script ->
js/
- css ->
css/
- font ->
fonts/
$ touch _pages/xxx.md
_pages/xxx.md
を作ることで _site/xxx.html
が自動生成されます。
---
title: あばうと
layout: default
post_number: 0
---
## 設定の仕方
### 画像貼るとき
<img src="/images/xxx.png" class="img-responsive">
post_number は、サイドバーメニューのソート用です。
記事を追加する場合は、既存の記事より大きな数字を設定してください。
html と markdown の記法両方使えます。