{% import "macros/navitem.html" as macros %} lab.js ยท {% block title %} {%- if page %} {{ page.title }} {% elif section %} {{ section.title }} {% elif title %} {{ title }} {% endif -%} {% endblock %} {% if page.description %} {% elif section.description %} {% endif %} {# Scripts are deferred as much as possible, and load asyncronously #} {% include "partials/scripts.html" %} {# Social media / open graph addons for homepage #} {% if current_path and current_path == "/" %} {% include "partials/social.html" %} {% endif %} {% include "partials/header.html" %} {# Debugging info {{ current_path }} {{ current_url }} #} {% block content %} {% if page %} {{ page.content | safe }} {% elif section %} {# The global /_index.md uses this template #} {{ section.content | safe }} {% else %} Unspecified content type {% endif %} {% endblock %} {% include "partials/footer.html" %}