2015-11-26 01:01:18 +03:00
< footer class = "bd-footer text-muted" role = "contentinfo" >
2015-11-20 00:58:21 +03:00
< div class = "container" >
2015-11-26 01:01:18 +03:00
< ul class = "bd-footer-links" >
2015-11-20 00:58:21 +03:00
< li > < a href = "{{ site.repo }}" > GitHub< / a > < / li >
2015-11-26 01:01:18 +03:00
< li > < a href = "{{ site.baseurl }}/examples/" > Examples< / a > < / li >
< li > < a href = "{{ site.baseurl }}/about/history/" > About< / a > < / li >
2015-11-20 00:58:21 +03:00
< / ul >
2015-11-26 01:01:18 +03:00
< p >
Designed and built
2015-12-03 00:02:51 +03:00
by Federico Zivolo < span class = "text-muted" > (< a href = "https://github.com/FezVrasta" target = "_blank" > @FezVrasta< / a > )< / span >
and Kevin Ross < span class = "text-muted" > (< a href = "https://github.com/rosskevin" target = "_blank" > @rosskevin< / a > )< / span > .
2015-11-26 01:01:18 +03:00
Maintained by our core team with the help of < a href = "https://github.com/FezVrasta/bootstrap-material-design/graphs/contributors" > our contributors< / a > .
< / p >
2015-12-03 00:02:51 +03:00
< p > Code licensed < a rel = "license" href = "https://github.com/FezVrasta/bootstrap-material-design/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 >
2015-12-06 17:43:09 +03:00
< p > Material Design for Bootstrap v{{ site.data.version }} is a customization of < a href = "http://getbootstrap.com" target = "_other" > Bootstrap< / a > v{{ site.data.bootstrap_version }} documentation and source.< / p >
2015-11-20 00:58:21 +03:00
< / div >
< / footer >
2015-12-03 00:02:51 +03:00
< script src = "{{ site.data.cdn.jquery }}" > < / script >
2015-11-26 01:01:18 +03:00
< script > window . jQuery || document . write ( '<script src="{{ site.baseurl }}/assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
2015-12-03 00:02:51 +03:00
< script src = "{{ site.data.cdn.bootstrap }}" > < / script >
2015-11-20 00:58:21 +03:00
2015-11-26 01:01:18 +03:00
< script src = "{{ site.baseurl }}/assets/js/vendor/tether.min.js" > < / script >
2015-11-21 02:50:50 +03:00
2015-11-20 00:58:21 +03:00
{% if site.github %}
2015-12-03 00:02:51 +03:00
< script src = "{{ site.baseurl }}/dist/js/{{ site.data.name }}.min.js" > < / script >
2015-11-26 01:01:18 +03:00
< script src = "{{ site.baseurl }}/assets/js/docs.min.js" > < / script >
2015-11-20 00:58:21 +03:00
{% else %}
2015-12-04 19:50:06 +03:00
<!-- <script src="{{ site.baseurl }}/dist/js/{{ site.data.name }}.js"></script> -->
{% for file in site.data.configBridge.paths.coreJs %}
< script src = "{{ site.baseurl }}/{{ file }}" > < / script >
{% endfor %}
2015-11-20 00:58:21 +03:00
{% for file in site.data.configBridge.paths.docsJs %}
2015-11-26 01:01:18 +03:00
< script src = "{{ site.baseurl }}/{{ file }}" > < / script >
2015-11-20 00:58:21 +03:00
{% endfor %}
{% endif %}
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
2015-11-26 01:01:18 +03:00
< script src = "{{ site.baseurl }}/assets/js/ie10-viewport-bug-workaround.js" > < / script >
< script src = "{{ site.baseurl }}/assets/js/ie-emulation-modes-warning.js" > < / script >
{% if page.layout == "docs" %}
2015-12-10 18:02:44 +03:00
< script src = "{{ site.baseurl }}/assets/js/vendor/jekyll-search.min.js" > < / script >
2015-11-26 01:01:18 +03:00
< script >
SimpleJekyllSearch.init({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('search-results'),
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 > ',
json: '/search.json'
})
< / script >
{% endif %}
2015-11-20 00:58:21 +03:00
2015-11-26 01:01:18 +03:00
< script >
Holder.addTheme('gray', {
background: '#777',
foreground: 'rgba(255,255,255,.75)',
2015-12-03 00:02:51 +03:00
font: 'Roboto',
2015-11-26 01:01:18 +03:00
fontweight: 'normal'
})
< / script >