aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: c1761c2f4b9c291a8120d98202673f6d3c74fb9b (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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
    <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
    <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>

    <title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.name }}</title>

    <meta name="author" content="{{ site.name }}" />
    <meta name="description" content="{{ site.description }}">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

    <!--[if IE]>
      <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->

    <link rel="stylesheet" type="text/css" href="/style.css" />
  </head>

  <body>
    <header>
      <a href="/" class="logo"><img src="/404.ups" />{{ site.name }}</a>
      
      <nav>
        <a href="/">Blog</a>
        <a href="/about">About</a>
      </nav>

      <div style="clear:both;"></div>
    </header>

    <div id="main" role="main">{{ content }}</div>
      
    <footer>
        <p></p>
    </footer>

    {% include analytics.html %}
  </body>
</html>