aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/footer.html
blob: 94f892dede79e70b64183d609a14ae7e9cf2ac39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!-- Footer -->
<footer id="footer">
  <div class="container">
    <div class="row">
      <div class="col-md-6 col-md-offset-3 text-center">
        <ul class="list-inline">
            <li><a href="http://twitter.com/spf13" class="icon-twitter icon-2x"></a></li>
            <li><a href="http://github.com/spf13/hugo" class="icon-octocat icon-2x"></a></li>
        </ul>
        <hr>
        <p>Copyright &copy; Steve Francia 2013&ndash;2014</p>
      </div>
    </div>
  </div>
</footer>
<!-- /Footer -->

<!-- Bootstrap core JavaScript -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="{{ .Site.BaseURL }}js/jquery-2.1.1.min.js"></script>
<script src="{{ .Site.BaseURL }}js/owl.carousel.min.js"></script>
<!--<script src="/js/bootstrap.min.js"></script>-->
<script>
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
  if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
      || location.hostname == this.hostname) {

    var target = $(this.hash);
    target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
    if (target.length) {
      $('html,body').animate({
        scrollTop: target.offset().top
      }, 1000);
      return false;
    }
  }
});
});
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
autoplay:true,
autoplayHoverPause:true,
autoplayTimeout:3000,
responsive:{
    0:{
        items:1
    },
    1000:{
        items:3
    },
}
})
</script>

{{ partial "analytics.html" . }}
</body>

</html>