{# WebPortfolio This your base layout #} {% import "WebPortfolio/macros/base.html" as wp with context %} {% import "WebPortfolio/macros/navbar.html" as navbar with context %} {% import "WebPortfolio/macros/bootstrap.html" as bs with context %} {{ wp.site_header("%s - Site Name") }} {{ bs.theme('cosmo') }} {{ wp.css_assets("all-css") }} {{ navbar.navbar(brand="My Site Name", exclude_groups=["admin"]) }}
{{ wp.flashed_messages() }}
{# The content of the site will be included here automatically #} {% include __template__ %}
{{ wp.js_assets("all-js") }}