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
Publishing and Hosting on GitHub pages
Search
Mu-An Chiou
December 04, 2015
Technology
4
130
Publishing and Hosting on GitHub pages
Mozfest 2015
Mu-An Chiou
December 04, 2015
Tweet
Share
More Decks by Mu-An Chiou
See All by Mu-An Chiou
Details on <details>
muan
0
310
Having no patience(Japanese)
muan
1
370
JSDC
muan
2
540
Design with Code
muan
5
540
Having no patience
muan
1
290
Design in GitHub
muan
5
360
Project Lab Squirrel #2
muan
1
590
Project Lab Squirrel #1
muan
8
830
A girl with no patience
muan
18
1.9k
Other Decks in Technology
See All in Technology
生成AIによるCloud Native基盤構築の可能性と実践的ガードレールの敷設について
nwiizo
7
740
Ops-JAWS_Organizations小ネタ3選.pdf
chunkof
2
170
更新系と状態
uhyo
7
1.5k
アセスメントで紐解く、10Xのデータマネジメントの軌跡
10xinc
1
430
Amazon CloudWatch Application Signals ではじめるバーンレートアラーム / Burn rate alarm with Amazon CloudWatch Application Signals
ymotongpoo
5
510
4/16/25 - SFJug - Java meets AI: Build LLM-Powered Apps with LangChain4j
edeandrea
PRO
1
110
CloudWatch 大好きなSAが語る CloudWatch キホンのキ
o11yfes2023
0
180
ワールドカフェI /チューターを改良する / World Café I and Improving the Tutors
ks91
PRO
0
120
PagerDuty×ポストモーテムで築く障害対応文化/Building a culture of incident response with PagerDuty and postmortems
aeonpeople
1
120
新卒エンジニアがCICDをモダナイズしてみた話
akashi_sn
2
240
システムとの会話から生まれる先手のDevOps
kakehashi
PRO
0
280
品質文化を支える小さいクロスファンクショナルなチーム / Cross-functional teams fostering quality culture
toma_sm
0
110
Featured
See All Featured
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Designing for humans not robots
tammielis
252
25k
The Pragmatic Product Professional
lauravandoore
33
6.5k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.7k
Making the Leap to Tech Lead
cromwellryan
133
9.2k
Rails Girls Zürich Keynote
gr2m
94
13k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
19
1.1k
It's Worth the Effort
3n
184
28k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
30k
What's in a price? How to price your products and services
michaelherold
245
12k
Designing Experiences People Love
moore
141
24k
Code Review Best Practice
trishagee
67
18k
Transcript
MOZFEST2015 ! GitHub Pages static sites and Jekyll blogs. "
Publishing and Hosting on
MOZFEST2015 ! GitHub will host free static sites for every
repository and every user or organisation account. This service is called GitHub Pages. Static Sites
MOZFEST2015 ! pages.github.com
MOZFEST2015 ! Any web files on a branch named: gh-pages
Static Sites– Repository You’ll find it online at: your_username.github.io/repository_name
MOZFEST2015 ! Any web files on a branch named: master
Static Sites– User/Org Name the repository this and you’ll find it online at: your_username.github.io
MOZFEST2015 ! Open source static sites can be forked and
used by anyone else (according to license). You’ll need just one commit and GitHub will host it. https://jlord.github.io/forkngo Fork-ability
MOZFEST2015 ! Jekyll is a static site generator with lots
of features for blogging. By default, GitHub runs Jekyll on its Pages hosting servers. Jekyll Blogs
MOZFEST2015 ! 1. You have a directory of files How
does Jekyll work - _layouts/ - index.html - about.md
MOZFEST2015 ! 2. Jekyll builds a site based on your
files How does Jekyll work - _layouts/ - index.html - about.md
MOZFEST2015 ! 2-1. Does it have a front-formatter? How does
Jekyll work - _layouts/ - index.html - about.md ——— title: How does… date: 2015-11-06 ——— Content… {
MOZFEST2015 ! How does Jekyll work - _layouts/ - index.html
- about.md <h1>How does…</h1> <p>Content…</p> 2-1. Liquid-fy and convert Markdown to HTML
MOZFEST2015 ! How does Jekyll work - _layouts/ - index.html
- about.md ——— title: How does… date: 2015-11-06 ——— Content… 2-2. All files gets copied to _site/
MOZFEST2015 ! How does Jekyll work - _layouts/ - _site/index.html
- _site/about.html - index.html - about.md 3. Tada!
MOZFEST2015 ! How does Jekyll work Find out more about
the cool things Jekyll empowers you to do at: http://jekyllrb.com
MOZFEST2015 ! You can also fork and use Jekyll sites!
Jekyll Blogs
MOZFEST2015 ! Fork a static site and customize. Start a
blog and create a post. http://github.com/muan/mozfest-hi https://github.com/muan/scribble Let’s make!