header.html 1.99 KB
Newer Older
1
<meta charset="utf-8">
2
<meta http-equiv="X-UA-Compatible" content="IE=edge">
3
<meta name="viewport" content="width=device-width, initial-scale=1.0">
4
5
<meta name="description" content="Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.">
<meta name="keywords" content="HTML, CSS, JS, JavaScript, framework, bootstrap, front-end, frontend, web development">
Julian Thilo's avatar
Julian Thilo committed
6
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
7
8
9
10

<title>
  {% if page.title == "Bootstrap" %}
    {{ page.title }}
wangsai's avatar
wangsai committed
11
  {% else %}
12
13
14
15
16
    {{ page.title }} &middot; Bootstrap
  {% endif %}
</title>

<!-- Bootstrap core CSS -->
17
<link href="{{ page.base_url }}dist/css/bootstrap.min.css" rel="stylesheet">
18
19

<!-- Documentation extras -->
20
21
<link href="{{ page.base_url }}docs-assets/css/docs.css" rel="stylesheet">
<link href="{{ page.base_url }}docs-assets/css/pygments-manni.css" rel="stylesheet">
22
<!--[if lt IE 9]><script src="{{ page.base_url }}docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
23
24
25

<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
Chris Rebert's avatar
Chris Rebert committed
26
  <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
Chris Rebert's avatar
Chris Rebert committed
27
  <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
28
29
30
<![endif]-->

<!-- Favicons -->
31
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ page.base_url }}docs-assets/ico/apple-touch-icon-144-precomposed.png">
32
                               <link rel="shortcut icon" href="{{ page.base_url }}docs-assets/ico/favicon.ico">
33

34
<script>
35
36
37
38
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-146052-10']);
  _gaq.push(['_trackPageview']);
  (function() {
39
    var ga = document.createElement('script'); ga.async = true;
40
41
42
43
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
</script>