Basic outline of presentation
This commit is contained in:
parent
cf236d0936
commit
97f336bc42
15 changed files with 94 additions and 15 deletions
BIN
img/but-it-works-on-my-machine.jpg
Normal file
BIN
img/but-it-works-on-my-machine.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
5
slides/but-it-works-on-my-machine.md
Normal file
5
slides/but-it-works-on-my-machine.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
## But it works on my machine!
|
||||
|
||||
![But it works on my machine!](img/but-it-works-on-my-machine.jpg)
|
||||
|
||||
note:
|
5
slides/conclusion.md
Normal file
5
slides/conclusion.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Try it for yourself
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/demonstration.md
Normal file
7
slides/demonstration.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Demonstration
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/getting-started-with-vagrant.md
Normal file
7
slides/getting-started-with-vagrant.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Getting Started With Vagrant
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
|
@ -1,3 +1,10 @@
|
|||
# Vagrant
|
||||
# DevOps and You
|
||||
|
||||
or "A Brief Introduction to Vagrant"
|
||||
|
||||
<small>Andrew Tomaka / [@atomaka](https://twitter.com/atomaka)</small>
|
||||
|
||||
note:
|
||||
New DevOps meetup by Jesse and Chris as part of their "Tech Tuesday"
|
||||
|
||||
First Tuesday of each month
|
||||
|
|
7
slides/installation.md
Normal file
7
slides/installation.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Installation
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
|
@ -1,3 +1,13 @@
|
|||
[
|
||||
"index.md"
|
||||
]
|
||||
"index.md",
|
||||
"what-is-devops.md",
|
||||
"why-should-you-care.md",
|
||||
"but-it-works-on-my-machine.md",
|
||||
"what-is-vagrant.md",
|
||||
"installation.md",
|
||||
"the-vagrantfile.md",
|
||||
"usage.md",
|
||||
"demonstration.md",
|
||||
"resources.md",
|
||||
"conclusion.md"
|
||||
]
|
7
slides/resources.md
Normal file
7
slides/resources.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Resources
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/the-vagrantfile.md
Normal file
7
slides/the-vagrantfile.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## The Vagrantfile
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/usage.md
Normal file
7
slides/usage.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Usage
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/what-is-devops.md
Normal file
7
slides/what-is-devops.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## What is DevOps?
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/what-is-vagrant.md
Normal file
7
slides/what-is-vagrant.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## What is Vagrant?
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
7
slides/why-should-you-care.md
Normal file
7
slides/why-should-you-care.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Why should you care?
|
||||
|
||||
This is a new Markdown slide
|
||||
|
||||
note:
|
||||
Put your speaker notes here.
|
||||
You can see them pressing 's'.
|
|
@ -34,18 +34,7 @@
|
|||
<body>
|
||||
<div class="reveal">
|
||||
<div class="slides">
|
||||
<% _.forEach(slides, function(slide) { %>
|
||||
<% if (!_.isArray(slide)) { %>
|
||||
<%= section(slide) %>
|
||||
<% } %>
|
||||
<% if (_.isArray(slide)) { %>
|
||||
<section>
|
||||
<% _.forEach(slide, function(verticalslide) { %>
|
||||
<%= section(verticalslide) %>
|
||||
<% }); %>
|
||||
</section>
|
||||
<% } %>
|
||||
<% }); %>
|
||||
<% _.forEach(slides, function(slide) { %><% if (!_.isArray(slide)) { %><%= section(slide) %><% } %><% if (_.isArray(slide)) { %><section><% _.forEach(slide, function(verticalslide) { %><%= section(verticalslide) %><% }); %></section><% } %><% }); %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue