mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-30 05:24:09 +03:00
460688090e
use always `data.cdn` to avoid confusion
19 lines
482 B
HTML
19 lines
482 B
HTML
<script src="{{ site.data.cdn.jquery }}"></script>
|
|
<script src="{{ site.data.cdn.tether }}"></script>
|
|
<script src="{{ site.baseurl }}/dist/bootstrap-material-design.iife.min.js"></script>
|
|
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<script src="{{ site.data.cdn['ie10-viewport-bug-workaround'] }}"></script>
|
|
|
|
<script>
|
|
$(function() {
|
|
$('body').bootstrapMaterialDesign();
|
|
})
|
|
</script>
|
|
|
|
|
|
{% if page.js %}
|
|
<script src="{{ page.js }}"></script>
|
|
{% endif %}
|