pages/_layouts/default.html
Rohan Deb Sarkar a9685570e5
Adds Dimensions badge (#1086)
This adds a dimension badge as requested in #987.

This separates the the links from the badges, in case more badges need to be added in the future.
2023-01-08 10:47:25 -05:00

37 lines
922 B
HTML

<!DOCTYPE html>
<html lang="{{ site.lang }}">
<!-- Head -->
<head>
{%- if page.redirect -%}
<meta http-equiv="refresh" content="3; url={{ site.baseurl }}/" />
{%- 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/badges.html %}
{% include scripts/mathjax.html %}
{% include scripts/analytics.html %}
{% include scripts/progressBar.html %}
</body>
</html>