{% import "Pylot/macros/base.html" as m with context %} {{ __.META["title"] | safe }} {{ m.css("vendor/font-awesome/css/font-awesome.min.css") }} {# List all css in here #} {% assets output="all_css.css", "vendor/bootstrap/css/bootstrap.min.css", "vendor/bootswatch/superhero.css", "css/style.css" -%} {% endassets -%} {{ m.js("vendor/jquery/jquery.min.js") }} {{ m.js("vendor/bootstrap/js/bootstrap.min.js")}} {#:: Include Pylot header: metadata, scripts ::#} {% include "Pylot/includes/header.html" %}
{{- m.flashed_messages() -}}
{#:: The content of the site will be included here ::#} {%- include __view_template__ -%}
{#: List all js to be combined ::#} {% assets output="all_js.js", "js/app.js" -%} {% endassets -%}