mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="bd-theme-{% if page.theme %}{{ page.theme }}{% else %}{{ page.layout }}{% endif %}">
|
|
<head>
|
|
{% include global/head.html %}
|
|
</head>
|
|
<body>
|
|
{{ content }}
|
|
|
|
{% if page.modals %}
|
|
{% for modal in page.modals %}
|
|
{% include {{ modal }} %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% unless page.hide_footer %}
|
|
{% include global/support.html %}
|
|
{% include global/native.html %}
|
|
{% endunless %}
|
|
|
|
{% include global/about.html %}
|
|
|
|
<script src="{{ site.url }}/assets/vendor/clipboard-2.0.11.min.js"></script>
|
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
|
<script type="text/javascript"> docsearch({
|
|
apiKey: 'cb93c14bebd90678e789c946d95ea94d',
|
|
indexName: 'bulma',
|
|
inputSelector: '#algoliaSearch',
|
|
debug: false // Set debug to true if you want to inspect the dropdown
|
|
});
|
|
</script>
|
|
<script src="{{ site.url }}/assets/javascript/main.js"></script>
|
|
</body>
|
|
</html>
|