summaryrefslogtreecommitdiff
path: root/_layouts/global.html
blob: 21578babd16016124a1c6c892edb2f0aa1c3f405 (plain) (blame)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" dir="ltr" lang="en-US">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" dir="ltr" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" dir="ltr" lang="en-US">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
<html dir="ltr" lang="en-US">
<!--<![endif]-->
<head>
  <link rel="shortcut icon" href="favicon.ico" />
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width" />
  <title>{{page.title}} | Apache Spark</title>

  <link rel="stylesheet" type="text/css" media="all" href="{{site.url}}css/style.css" />
  <link rel="stylesheet" href="{{site.url}}css/pygments-default.css">

  <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-32518208-2', 'apache.org');
    ga('send', 'pageview');

  </script>

  <link rel='canonical' href='{{site.url}}index.html' />

  <style type="text/css">
    #site-title,
    #site-description {
      position: absolute !important;
      clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
      clip: rect(1px, 1px, 1px, 1px);
    }
  </style>
  <style type="text/css" id="custom-background-css">
    body.custom-background { background-color: #f1f1f1; }
  </style>
</head>

<!--body class="page {% if page.sidebar %}two-column right-sidebar{% else %}singular{% endif%}"-->
<body class="{{page.type}}">
<div id="page" class="hfeed">

  {% include navbar.html %}

  <div id="main">
    <div id="primary">
      <div id="content" role="main">
        {% if page.type contains 'archive' %}
          {{ content }}
        {% else %}
          <article class="page type-page status-publish hentry">
            {{ content }}
          </article><!-- #post -->
        {% endif %}
      </div><!-- #content -->
      {% if page.sidebar %}
      <div id="secondary" class="widget-area" role="complementary">
        {{ page.sidebar | markdownify }}
      </div>
      {% endif %}
      {% include footer.html %}
    </div><!-- #primary -->
  </div><!-- #main -->
</div><!-- #page -->


</body>
</html>