1
2022-12-03 11:06:23 -05:00

76 lines
2.3 KiB
HTML

{# Allow extenders to pass through variables #}
{% block variable_wormhole %}
{% set title = "NO TITLE SET" %}
{% set description = "" %}
{% set is_article = false %}
{% set feature_flags = [] %}
{% set redirect_target = "" %}
{% endblock variable_wormhole %}
<!DOCTYPE html>
<html lang="en">
<head>
{# Page metadata #}
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/jpg" href="{{config.extra.profile_photo}}" />
{% include "components/metadata/advertise-rss.html" %}
{% include "components/metadata/opengraph.html" %}
{# Redirect support #}
{% if redirect_target != "" %}
<meta http-equiv="refresh" content="0; url={{redirect_target}}" />
{% endif %}
{# Page title #}
<title>{{title}} | {{config.title}}</title>
{# Site-wide styles #}
<link rel="stylesheet" href="/global.css">
{# Less important styles #}
<link rel="stylesheet" href="/dist/github-markdown-css/github-markdown-light.css" lazyload>
<link rel="stylesheet" href="/styles/bootstrap.css" lazyload>
<link rel="stylesheet" href="/styles/typography.css">
{# Component styles #}
{% block component_styles %}
{% endblock component_styles %}
{# Enable features #}
{% include "components/metadata/page-features.html" %}
</head>
<body>
{# The whole page #}
<div class="page">
{# Allow pages to override the content before the navbar #}
{% block page_start %}{% endblock page_start %}
{# Navbar #}
<div class="container">
{% include "components/navbar.html" %}
</div>
{# Actual content #}
<article id="content" class="container markdown-body">
{% block content %}{% endblock content %}
</article>
{# Footer #}
{% include "components/footer.html" %}
</div>
{# External scripts #}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
{% include "components/metadata/analytics.html" %}
</body>
</html>