doctype html
html(lang='en')
  head
    meta(charset='utf-8')
    title
      block title
        | Git Miner
    meta(name='description', content='')
    meta(name='author', content='')
    meta(name="viewport" content="width=device-width, initial-scale=1")
    base(href='/')

    link(rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css")
    link(rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css")

    script(src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js")
    script(src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js")
    script(src="//cdnjs.cloudflare.com/ajax/libs/highcharts/4.1.5/highcharts.js")

    script.
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-3983183-14', 'auto');
      ga('send', 'pageview');


    //- All stylesheets put to top of the page to improve page performance
    block stylesheets
      style.
        html {
          position: relative;
          min-height: 100%;
        }

        body {
          margin-bottom: 60px;
          //- /* Margin bottom by footer height */
        }

        .container {
          width: auto;
          max-width: 680px;
          padding: 0 15px;
        }
        .container.wide {
          max-width: 960px;
        }

        .footer {
          position: absolute;
          bottom: 0;
          width: 100%;
          //- /* Set the fixed height of the footer here */
          height: 60px;
          background-color: #f5f5f5;
        }

        .container .text-muted {
          margin: 20px 0;
        }

        h4 {
          margin-top: 30px;
        }

        hr {
          margin-top: 40px;
          margin-bottom: 40px;
        }



    block scripts



    block body

    .footer
      block footer
        .container.wide
          p.text-muted
            | &copy; 2014 - #{new Date().getFullYear()} gitminer.com.
            |&nbsp;
            a(href="mailto:deadrunk@gmail.com") Contact
