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
290
Having no patience(Japanese)
muan
1
360
JSDC
muan
2
530
Design with Code
muan
5
530
Having no patience
muan
1
290
Design in GitHub
muan
5
360
Project Lab Squirrel #2
muan
1
570
Project Lab Squirrel #1
muan
8
810
A girl with no patience
muan
18
1.9k
Other Decks in Technology
See All in Technology
生成AIをより賢く エンジニアのための RAG入門 - Oracle AI Jam Session #20
kutsushitaneko
4
260
Turing × atmaCup #18 - 1st Place Solution
hakubishin3
0
490
大幅アップデートされたRagas v0.2をキャッチアップ
os1ma
2
540
NilAway による静的解析で「10 億ドル」を節約する #kyotogo / Kyoto Go 56th
ytaka23
3
380
PHPからGoへのマイグレーション for DMMアフィリエイト
yabakokobayashi
1
170
MLOps の現場から
asei
7
650
Oracle Cloudの生成AIサービスって実際どこまで使えるの? エンジニア目線で試してみた
minorun365
PRO
4
290
DevFest 2024 Incheon / Songdo - Compose UI 조합 심화
wisemuji
0
120
レンジャーシステムズ | 会社紹介(採用ピッチ)
rssytems
0
180
10個のフィルタをAXI4-Streamでつなげてみた
marsee101
0
170
生成AIのガバナンスの全体像と現実解
fnifni
1
190
非機能品質を作り込むための実践アーキテクチャ
knih
5
1.5k
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.3k
How to Think Like a Performance Engineer
csswizardry
22
1.2k
Designing Experiences People Love
moore
138
23k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Into the Great Unknown - MozCon
thekraken
33
1.5k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
26
1.5k
Navigating Team Friction
lara
183
15k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
132
33k
YesSQL, Process and Tooling at Scale
rocio
169
14k
Writing Fast Ruby
sferik
628
61k
Site-Speed That Sticks
csswizardry
2
190
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!