33 lines
603 B
HTML
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>
|