Skip to content
Snippets Groups Projects
Select Git revision
  • 6f3d29dbaf7f2f241c7c959f8677e351335b3215
  • master default protected
2 results

base.html

Blame
  • base.html 524 B
    {%- extends "bootstrap/base.html" %}
     
     {# Set default title #}
     {% block title %}Pizza Palace{% endblock %}
     
     {# Fix legacy background #}
     {% import "bootstrap/fixes.html" as fixes %}
     {% block head %}
     {{super()}}
     {{fixes.ie8()}}
     {%- endblock %}
     
     {# Add CSS Files #}
     {% block styles -%}
         {{super()}}
         <link rel="stylesheet" type="text/css"
               href="{{url_for('static', filename='pizza-palace.css')}}">
     {% endblock %}
     
     {# Navbar #}
     {% block navbar %}
     {{nav.frontend_top.render()}}
     {% endblock %}