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
69
Other Decks in Programming
See All in Programming
Temporal Knowledge Graphで作る! 時間変化するナレッジを扱うAI Agentの世界
po3rin
5
1.2k
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
680
Software Architecture
hschwentner
6
2.4k
AsyncSequenceとAsyncStreamのプロポーザルを全部読む!!
s_shimotori
1
220
One Enishi After Another
snoozer05
PRO
0
170
AI 駆動開発におけるコミュニティと AWS CDK の価値
konokenj
5
320
ALL CODE BASE ARE BELONG TO STUDY
uzulla
29
6.9k
AI Agent 時代的開發者生存指南
eddie
4
2.3k
CSC305 Lecture 12
javiergs
PRO
0
250
CSC305 Lecture 11
javiergs
PRO
0
320
Module Proxyのマニアックな話 / Niche Topics in Module Proxy
kuro_kurorrr
0
1.1k
テーブル定義書の構造化抽出して、生成AIでDWH分析を試してみた / devio2025tokyo
kasacchiful
0
360
Featured
See All Featured
It's Worth the Effort
3n
187
28k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.7k
Testing 201, or: Great Expectations
jmmastey
46
7.7k
Rails Girls Zürich Keynote
gr2m
95
14k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
Statistics for Hackers
jakevdp
799
220k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
253
22k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
For a Future-Friendly Web
brad_frost
180
10k
Navigating Team Friction
lara
190
15k
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