mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 20:28:14 +03:00
83 lines
3.1 KiB
HTML
83 lines
3.1 KiB
HTML
<!-- Footer
|
|
================================================== -->
|
|
<footer class="bs-docs-footer" role="contentinfo">
|
|
<div class="container">
|
|
|
|
<ul class="bs-docs-footer-links">
|
|
<li><a href="{{ site.repo }}">GitHub</a></li>
|
|
<li><a href="../getting-started/#examples">Examples</a></li>
|
|
<li><a href="../about/">About</a></li>
|
|
</ul>
|
|
|
|
<p>Designed and built by <a href="https://github.com/FezVrasta" target="_blank">@FezVrasta</a>. Maintained with the help of <a href="https://github.com/FezVrasta/bootstrap-material-design/graphs/contributors">our contributors</a>.</p>
|
|
|
|
<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>
|
|
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="../assets/js/vendor/jquery.min.js"><\/script>')</script>
|
|
|
|
<!-- Bootstrap -->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
|
<!-- Sliders -->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/noUiSlider/6.2.0/jquery.nouislider.min.js"></script>
|
|
<!-- Dropdown.js -->
|
|
<script src="https://cdn.rawgit.com/FezVrasta/dropdown.js/master/jquery.dropdown.js"></script>
|
|
|
|
<!-- BMD -->
|
|
{% if site.github %}
|
|
<script src="../dist/js/material.min.js"></script>
|
|
<script src="../dist/js/ripples.min.js"></script>
|
|
{% else %}
|
|
<script src="../dist/js/material.js"></script>
|
|
<script src="../dist/js/ripples.js"></script>
|
|
{% endif %}
|
|
|
|
<script>
|
|
$(function () {
|
|
$.material.init();
|
|
});
|
|
</script>
|
|
|
|
{% if site.github %}
|
|
<script src="../assets/js/docs.min.js"></script>
|
|
{% else %}
|
|
{% for file in site.data.configBridge.paths.docsJs %}
|
|
<script src="{{ file }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.slug == "customize" %}
|
|
<script>var __configBridge = {{ site.data.configBridge.config | jsonify }}</script>
|
|
{% if site.github %}
|
|
<script src="../assets/js/customize.min.js"></script>
|
|
{% else %}
|
|
{% for file in site.data.configBridge.paths.customizerJs %}
|
|
<script src="{{ file }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<script src="../assets/js/ie10-viewport-bug-workaround.js"></script>
|
|
|
|
<!-- Analytics
|
|
================================================== -->
|
|
<!--<script>-->
|
|
<!--var _gauges = _gauges || [];-->
|
|
<!--(function() {-->
|
|
<!--var t = document.createElement('script');-->
|
|
<!--t.async = true;-->
|
|
<!--t.id = 'gauges-tracker';-->
|
|
<!--t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013');-->
|
|
<!--t.src = '//secure.gaug.es/track.js';-->
|
|
<!--var s = document.getElementsByTagName('script')[0];-->
|
|
<!--s.parentNode.insertBefore(t, s);-->
|
|
<!--})();-->
|
|
<!--</script>-->
|