{% extends 'layout.html' %}
{% block head %}
{{ super() }}
{{ head.script(url_for('static', filename='js/angular/angular.js')) }}
{%- for stylesheet in stylesheets %}
{{ head.stylesheet(stylesheet) }}
{%- endfor %}
{%- for script in scripts %}
{{ head.script(script) }}
{%- endfor %}
{% if initial_data -%}
{%- endif %}
{% endblock %}
{% block content %}
{{template|safe}}
{% endblock %}