{#- The shipped default for a Markdown page. A site restyles it by shipping templates/pages/markdown.html (this app only) or templates/podpack_pages/markdown.html (every pages-kind app) -- and then owns both of the things this file carries besides the body: the code-highlight stylesheet and the MathJax loader. In scope: title, content (the rendered body), subnav. -#} {% extends "base.html" %} {% block content %} {#- codehilite marks code up with Pygments' classes and nothing styles them unless the chrome does. Shipped inline because the chromes share no head block, and resolved like every template -- site, then app, then this package -- so a site rethemes one app with templates//codehilite.css and every app with templates/podpack_pages/codehilite.css. -#} {{ content | safe }} {% endblock %} {% block scripts %} {% endblock %}