Skip to content

Commit

Permalink
Add slideshow to conf page
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Jan 15, 2015
1 parent e406219 commit 8ccdeff
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions docs/conf/na/2015.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
template: conf.2015.html

<style>
#slideshow {
margin: 50px 0 350px;
position: relative;
width: 100%;
padding: 10px;
}

#slideshow > div {
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
}
</style>

<script>
$("#slideshow > div:gt(0)").hide();

setInterval(function() {
$('#slideshow > div:first')
.fadeOut(1000)
.next()
.fadeIn(1000)
.end()
.appendTo('#slideshow');
}, 3000);
</script>


# North America 2015

Join us for a three day event to explore the art and science of documentation.
Expand All @@ -13,6 +44,33 @@ centrally located in the heart of Portland.
[crystal-ballroom]: http://www.mcmenamins.com/CrystalBallroom
[wabisabi]: http://en.wikipedia.org/wiki/Wabi-sabi


<div class="row">
<div class="col-md-10 col-md-offset-1">

<div id="slideshow">
<div>
<img src="https://farm8.staticflickr.com/7437/14175146165_f6d22c5c3b_c.jpg" class="img-responsive" alt="IMG_1479">
</div>
<div>
<img src="https://farm8.staticflickr.com/7443/14198154853_0cddd983b6_c.jpg" class="img-responsive" alt="IMG_1603">
</div>
<div>
<img src="https://farm6.staticflickr.com/5527/14175399982_b13b415443_c.jpg" class="img-responsive" alt="IMG_2538">
</div>
<div>
<img src="https://farm8.staticflickr.com/7329/14171854031_08d26084d1_c.jpg" class="img-responsive" alt="Group_Photo_2014_T">
</div>
<div>
<img src="https://farm8.staticflickr.com/7359/14171848131_734e95d87d_c.jpg" class="img-responsive" alt="Hike_Forest_05">
</div>
<div>
<img src="https://farm8.staticflickr.com/7369/13991334230_27e72622c2_c.jpg" class="img-responsive" alt="IMG_1833">
</div>
</div>
</div>
</div>

## Events

Write the Docs is more than a conference.
Expand Down

0 comments on commit 8ccdeff

Please sign in to comment.