diff options
| author | Mark Otto <[email protected]> | 2018-07-24 17:25:12 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-07-24 17:25:12 -0700 |
| commit | fb2de04374a068594c84c1ec6aba6b5b3726ed27 (patch) | |
| tree | 88f6d6f1a8a46282890c5eaa4776aed2a4ebd9e0 /site/_includes/header.html | |
| parent | c6abb8ca8405777e8a3fb29016db5cc54889ec8b (diff) | |
| parent | e3b98c51da4b39fa8af26ec05db07da57fefb0b6 (diff) | |
| download | bootstrap-fb2de04374a068594c84c1ec6aba6b5b3726ed27.tar.xz bootstrap-fb2de04374a068594c84c1ec6aba6b5b3726ed27.zip | |
Merge branch 'v4-dev' into malkomich-v4-dev
Diffstat (limited to 'site/_includes/header.html')
| -rw-r--r-- | site/_includes/header.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/site/_includes/header.html b/site/_includes/header.html new file mode 100644 index 000000000..b92a5790a --- /dev/null +++ b/site/_includes/header.html @@ -0,0 +1,37 @@ +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> +<meta name="description" content="{{ page.description | default: site.description | smartify }}"> +<meta name="author" content="{{ site.authors }}"> +<meta name="generator" content="Jekyll v{{ jekyll.version }}"> + +<title> + {%- if page.title -%} + {{ page.title | smartify }} · {{ site.title | smartify }} + {%- else -%} + {{ site.title | smartify }} · {{ site.description | smartify }} + {%- endif -%} +</title> + +<!-- Bootstrap core CSS --> +{% if site.github %} +<link href="{{ site.baseurl }}/docs/{{ site.docs_version }}/dist/css/bootstrap.min.css" rel="stylesheet" integrity="{{ site.cdn.css_hash }}" crossorigin="anonymous"> +{% else %} +<link href="{{ site.baseurl }}/docs/{{ site.docs_version }}/dist/css/bootstrap.css" rel="stylesheet"> +{% endif %} + +<!-- Documentation extras --> +{% if page.layout == "docs" %} +<link href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" rel="stylesheet"> +{% endif %} +<link href="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/css/docs.min.css" rel="stylesheet"> + +{% include favicons.html %} + +{% include social.html %} + +<script> + window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; + ga('create', 'UA-146052-10', 'getbootstrap.com'); + ga('send', 'pageview'); +</script> +<script async src='https://www.google-analytics.com/analytics.js'></script> |
