Make simple, easy presentations using Markdown
_posts
named YYYY-MM-DD-some-title.html
Put this at the top of your file:
---
title: Your Proper Title
layout: presentation
---
Use ---
as a slide separator. If you want the text to appear
centered, use class: center, middle
Example presentation:
---
title: Your Proper Title
layout: presentation
---
class: center, middle
# My Presentation
---
## <big>My List</big>
0. Item 1
- sub item 1
- sub item 2
0. Item 2
- etc
Install Jekyll
gem install jekyll
Run the server:
# NOTE: the `-w` option will reload the pages as you change them
# instead of having to stop and start the server.
> jekyll serve -w
Then visit localhost:4000
Powered by Jekyll