templates/reference.html (18 lines of code) (raw):

{% extends 'base.html' %} {% from 'inc/nav/side-tree-nav.html' import side_tree_nav %} {% block styles %} <link rel="stylesheet" href="{{ url_for('static', filename='reference.css')|autoversion }}"> {% endblock %} {% block scripts %} <script src="{{ url_for('static', filename='reference.js')|autoversion }}"></script> {% endblock %} {% block content %} <div class="g-grid"> <article role="main" class="page-content g-9"{%- if site.contenteditable -%} contenteditable="true"{%- endif -%}> {% include 'inc/edit-on-github-link.html' %} {% block page_content %} {{ page.html | safe }} {% endblock %} </article> </div> {% endblock %}