pages/_layouts/default.html
Amir Pourmand 13e6ceb1c7
Layout Spacing problem when footer_fixed: false (#554)
* fix space

* Minor adjustments

Co-authored-by: Maruan Al-Shedivat <maruan@genesistherapeutics.ai>
2022-02-13 22:52:51 -05:00

38 lines
883 B
HTML

---
layout: parse
---
<!DOCTYPE html>
<html lang="{{ site.lang }}">
<!-- Head -->
<head>
{%- if page.redirect -%}
<meta http-equiv="refresh" content="3; url={{ site.baseurl | prepend: site.url }}/" />
{%- endif -%}
{% include head.html %}
</head>
<!-- Body -->
<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 %}
<!-- JavaScripts -->
{% include scripts/jquery.html %}
{% include scripts/bootstrap.html %}
{% include scripts/masonry.html %}
{% include scripts/misc.html %}
{% include scripts/mathjax.html %}
{% include scripts/analytics.html %}
</body>
</html>