Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Create Your Own Blog Using Jekyll
Search
Swathi Kantharaja
February 10, 2014
Programming
0
110
Create Your Own Blog Using Jekyll
Swathi Kantharaja
February 10, 2014
Tweet
Share
More Decks by Swathi Kantharaja
See All by Swathi Kantharaja
Introduction to Database
swathuk
0
69
Introduction to Programming
swathuk
0
68
How Web Works And Where Rails Fits In
swathuk
1
100
Mobile Device Management
swathuk
0
66
Other Decks in Programming
See All in Programming
Webの外へ飛び出せ NativePHPが切り拓くPHPの未来
takuyakatsusa
2
560
AI時代のソフトウェア開発を考える(2025/07版) / Agentic Software Engineering Findy 2025-07 Edition
twada
PRO
89
30k
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
2
150
AIと”コードの評価関数”を共有する / Share the "code evaluation function" with AI
euglena1215
1
170
PicoRuby on Rails
makicamel
2
130
Rails Frontend Evolution: It Was a Setup All Along
skryukov
0
160
なぜ適用するか、移行して理解するClean Architecture 〜構造を超えて設計を継承する〜 / Why Apply, Migrate and Understand Clean Architecture - Inherit Design Beyond Structure
seike460
PRO
3
770
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
600
Hack Claude Code with Claude Code
choplin
4
2.1k
技術同人誌をMCP Serverにしてみた
74th
1
650
なんとなくわかった気になるブロックテーマ入門/contents.nagoya 2025 6.28
chiilog
1
270
ruby.wasmで多人数リアルタイム通信ゲームを作ろう
lnit
3
490
Featured
See All Featured
RailsConf 2023
tenderlove
30
1.1k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
The Cost Of JavaScript in 2023
addyosmani
51
8.5k
Being A Developer After 40
akosma
90
590k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Automating Front-end Workflow
addyosmani
1370
200k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
The Cult of Friendly URLs
andyhume
79
6.5k
Testing 201, or: Great Expectations
jmmastey
43
7.6k
Agile that works and the tools we love
rasmusluckow
329
21k
Transcript
Create Your Own Blog Using ! Jekyll 1
Why Jekyll? 2
Getting Started $ gem install jekyll! $ jekyll new myblog!
$ cd myblog! $ jekyll serve --watch 3
Directory Structure 4
_config.yml 5
Layouts 6
Liquid 7
Includes 8
Posts 9 YYYY-MM-DD-post-slug.extension
Customise URL permalink: /blog/:year/:month/:day/:title! permalink: /:month-:day-:year/:title.html 10
Front Matter 11
Markdown 12
Pygment 13
Drafts Place posts without date in _drafts directory! To test
locally: jekyll serve --drafts! To publish, move to _posts with date in the filename 14
Listing your posts 15
Pagination 16 paginate: <number>
Adding comments 17
Deploy to GitHub 18 username.github.io
CNAME 19
Thank You @swathuk! ! References! http://jekyllrb.com/docs/home/! https://learn.andrewmunsell.com/ 20