diff options
| author | Mark Otto <[email protected]> | 2013-02-13 23:37:08 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-13 23:37:08 -0800 |
| commit | d709dba284180679accb6e164686249bdf243211 (patch) | |
| tree | 67a8c2de412ea88d32340666a7fef496f8fc2cd0 /docs/_includes/header.html | |
| parent | b12ff91d482199ce64a6e2a39a0f1ba58d22de51 (diff) | |
| download | bootstrap-d709dba284180679accb6e164686249bdf243211.tar.xz bootstrap-d709dba284180679accb6e164686249bdf243211.zip | |
Start using some includes; test out some pygments highlighting
Diffstat (limited to 'docs/_includes/header.html')
| -rw-r--r-- | docs/_includes/header.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/docs/_includes/header.html b/docs/_includes/header.html new file mode 100644 index 000000000..ea590ca70 --- /dev/null +++ b/docs/_includes/header.html @@ -0,0 +1,44 @@ +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta name="description" content=""> +<meta name="author" content=""> + +<title> + {% if page.title == "Bootstrap" %} + {{ page.title }} + {% else if %} + {{ page.title }} · Bootstrap + {% endif %} +</title> + +<!-- Bootstrap core CSS --> +<link href="/assets/css/bootstrap.css" rel="stylesheet"> + +<!-- Documentation extras --> +<link href="/assets/css/docs.css" rel="stylesheet"> +<link href="/assets/css/pygments_monokai.css" rel="stylesheet"> +<link href="/assets/js/google-code-prettify/prettify.css" rel="stylesheet"> + +<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> +<!--[if lt IE 9]> + <script src="/assets/js/html5shiv.js"></script> + <script src="/assets/js/respond/respond.min.js"></script> +<![endif]--> + +<!-- Favicons --> +<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/assets/ico/apple-touch-icon-144-precomposed.png"> +<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/assets/ico/apple-touch-icon-114-precomposed.png"> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/assets/ico/apple-touch-icon-72-precomposed.png"> + <link rel="apple-touch-icon-precomposed" href="/assets/ico/apple-touch-icon-57-precomposed.png"> + <link rel="shortcut icon" href="/assets/ico/favicon.png"> + +<script type="text/javascript"> + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-146052-10']); + _gaq.push(['_trackPageview']); + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + 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> |
