mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
24 lines
712 B
HTML
24 lines
712 B
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 %}
|
|
|
|
{% include global/support.html %}
|
|
{% include global/native.html %}
|
|
{% include global/about.html %}
|
|
|
|
<script src="https://kit.fontawesome.com/418563224c.js" crossorigin="anonymous"></script>
|
|
<script src="{{ site.url }}/assets/vendor/clipboard-2.0.11.min.js"></script>
|
|
<script src="{{ site.url }}/assets/javascript/main.js"></script>
|
|
</body>
|
|
</html>
|