1
0
Fork 0

Basic outline of presentation

This commit is contained in:
Andrew Tomaka 2015-02-04 13:15:00 -05:00
parent cf236d0936
commit 97f336bc42
15 changed files with 94 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View 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
View 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
View File

@ -0,0 +1,7 @@
## Demonstration
This is a new Markdown slide
note:
Put your speaker notes here.
You can see them pressing 's'.

View 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'.

View File

@ -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
View File

@ -0,0 +1,7 @@
## Installation
This is a new Markdown slide
note:
Put your speaker notes here.
You can see them pressing 's'.

View File

@ -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
View File

@ -0,0 +1,7 @@
## Resources
This is a new Markdown slide
note:
Put your speaker notes here.
You can see them pressing 's'.

View 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
View 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
View 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'.

View 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'.

View 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'.

View File

@ -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>