Skip to content

Commit

Permalink
Fix base template
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Jan 15, 2015
1 parent de4fab2 commit 116cd42
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 32 deletions.
66 changes: 34 additions & 32 deletions docs/conf/na/2015.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,19 @@ template: conf.2015.html
</style>

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

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

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

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


Expand All @@ -43,29 +46,28 @@ We will return to the historic [Crystal Ballroom][crystal-ballroom],


<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 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>
<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
Expand Down
3 changes: 3 additions & 0 deletions theme/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@
g.src=('https:'==location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<script>
var mkdocs_page_name = "{{ current_page.input_path.replace('.md', '') }}"
</script>
</head>
<body{% if current_page.is_homepage %} class="homepage"{% endif %}>

Expand Down

0 comments on commit 116cd42

Please sign in to comment.