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
71
Introduction to Programming
swathuk
0
70
How Web Works And Where Rails Fits In
swathuk
1
100
Mobile Device Management
swathuk
0
68
Other Decks in Programming
See All in Programming
複雑なドメインに挑む.pdf
yukisakai1225
5
1.2k
個人軟體時代
ethanhuang13
0
320
ユーザーも開発者も悩ませない TV アプリ開発 ~Compose の内部実装から学ぶフォーカス制御~
taked137
0
180
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
1.7k
AIコーディングAgentとの向き合い方
eycjur
0
270
私の後悔をAWS DMSで解決した話
hiramax
4
210
そのAPI、誰のため? Androidライブラリ設計における利用者目線の実践テクニック
mkeeda
2
310
為你自己學 Python - 冷知識篇
eddie
1
350
もうちょっといいRubyプロファイラを作りたい (2025)
osyoyu
1
440
テストカバレッジ100%を10年続けて得られた学びと品質
mottyzzz
2
600
Reading Rails 1.0 Source Code
okuramasafumi
0
230
CJK and Unicode From a PHP Committer
youkidearitai
PRO
0
110
Featured
See All Featured
Agile that works and the tools we love
rasmusluckow
330
21k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Intergalactic Javascript Robots from Outer Space
tanoku
272
27k
We Have a Design System, Now What?
morganepeng
53
7.8k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.5k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
810
YesSQL, Process and Tooling at Scale
rocio
173
14k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Building an army of robots
kneath
306
46k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
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