2015-08-05 00:54:30 -07:00
< footer class = "bd-footer text-muted" role = "contentinfo" >
< div class = "container" >
< ul class = "bd-footer-links" >
2014-01-05 23:23:55 -08:00
< li > < a href = "{{ site.repo }}" > GitHub< / a > < / li >
2015-07-31 15:03:17 -07:00
< li > < a href = "https://twitter.com/getbootstrap" > Twitter< / a > < / li >
2015-08-25 14:49:02 +08:00
< li > < a href = "{{ site.baseurl }}/examples/" > Examples< / a > < / li >
< li > < a href = "{{ site.baseurl }}/about/history/" > About< / a > < / li >
2013-12-11 22:37:59 -08:00
< / ul >
2015-07-31 15:03:17 -07:00
< p > Designed and built with all the love in the world by < a href = "https://twitter.com/mdo" target = "_blank" > @mdo< / a > and < a href = "https://twitter.com/fat" target = "_blank" > @fat< / a > . Maintained by the < a href = "https://github.com/orgs/twbs/people" > core team< / a > with the help of < a href = "https://github.com/twbs/bootstrap/graphs/contributors" > our contributors< / a > .< / p >
2015-08-04 22:39:54 -07:00
< p > Currently v{{ site.current_version }}. Code licensed < a rel = "license" href = "https://github.com/twbs/bootstrap/blob/master/LICENSE" target = "_blank" > MIT< / a > , docs < a rel = "license" href = "https://creativecommons.org/licenses/by/3.0/" target = "_blank" > CC BY 3.0< / a > .< / p >
2013-12-11 22:37:59 -08:00
< / div >
< / footer >
2015-09-06 13:03:34 +03:00
< script src = "{{ site.cdn.jquery }}" > < / script >
2015-08-29 13:08:21 +03:00
< script > window . jQuery || document . write ( '<script src="{{ site.baseurl }}/assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
2014-10-28 23:04:25 -07:00
2015-11-19 01:00:35 -08:00
< script src = "{{ site.baseurl }}/assets/js/vendor/tether.min.js" > < / script >
2014-07-03 13:28:30 -07:00
{% if site.github %}
2014-12-19 00:24:09 -08:00
< script src = "{{ site.baseurl }}/dist/js/bootstrap.min.js" > < / script >
2014-07-03 13:28:30 -07:00
{% else %}
2014-12-19 00:24:09 -08:00
< script src = "{{ site.baseurl }}/dist/js/bootstrap.js" > < / script >
2014-07-03 13:28:30 -07:00
{% endif %}
2014-10-28 23:04:25 -07:00
2014-07-03 13:18:44 -07:00
{% if site.github %}
2014-12-19 00:24:09 -08:00
< script src = "{{ site.baseurl }}/assets/js/docs.min.js" > < / script >
2014-07-03 13:18:44 -07:00
{% else %}
2014-12-19 00:35:54 -08:00
{% for file in site.data.configBridge.paths.docsJs %}
< script src = "{{ site.baseurl }}/{{ file }}" > < / script >
{% endfor %}
2014-07-03 13:18:44 -07:00
{% endif %}
2014-10-28 23:04:25 -07:00
2014-07-27 17:01:34 -07:00
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
2014-12-19 00:24:09 -08:00
< script src = "{{ site.baseurl }}/assets/js/ie10-viewport-bug-workaround.js" > < / script >
2015-09-06 12:16:01 +03:00
< script src = "{{ site.baseurl }}/assets/js/ie-emulation-modes-warning.js" > < / script >
2013-08-11 18:42:13 -07:00
2015-08-26 19:14:59 +03:00
{% if page.layout == "docs" %}
< script src = "{{ site.baseurl }}/assets/js/vendor/jekyll-search.js" > < / script >
2014-12-24 04:13:23 -08:00
< script >
SimpleJekyllSearch.init({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('search-results'),
2015-08-18 19:51:21 -07:00
searchResultTemplate: '< a class = "dropdown-item" href = "{url}" > {title}< / a > ',
noResultsText: '< div class = "dropdown-item no-results" > Sorry, there are no results for that search.< / div > ',
2015-08-26 19:14:59 +03:00
json: '/search.json'
2014-12-24 04:13:23 -08:00
})
2015-08-26 19:14:59 +03:00
< / script >
{% endif %}
2015-01-20 21:12:25 -08:00
2015-08-26 19:14:59 +03:00
< script >
2015-01-20 21:12:25 -08:00
Holder.addTheme('gray', {
2015-05-28 14:07:45 -07:00
background: '#777',
foreground: 'rgba(255,255,255,.75)',
2015-01-20 21:12:25 -08:00
font: 'Helvetica',
2015-05-29 14:05:14 -07:00
fontweight: 'normal'
2015-01-20 21:12:25 -08:00
})
2014-12-24 04:13:23 -08:00
< / script >