pages/_layouts/default.html
2020-09-26 12:26:28 -04:00

33 lines
603 B
HTML

<!DOCTYPE html>
<html>
<head>
{% include head.html %}
{% include scripts/mathjax.html %}
</head>
<body class="{% if site.navbar_fixed %}fixed-top-nav{% endif %} {% unless site.footer_fixed %}sticky-bottom-footer{% endunless %}">
<!-- Header -->
{% include header.html %}
<!-- Content -->
<div class="container mt-5">
{{ content }}
</div>
<!-- Footer -->
{% include footer.html %}
</body>
{% include scripts/jquery.html %}
{% include scripts/bootstrap.html %}
{% include scripts/mansory.html %}
{% include scripts/misc.html %}
</html>