blob: 64e8140dc9a94bd128674dcab844383a3b7f70af (
plain)
1
2
3
4
5
6
7
8
9
|
{% extends "layout.html" %}
{% block head %}
{{ super() }}
<link href="{{ url_for("static", filename="css/one-page-app.css") }}" rel="stylesheet" media="screen" />
{% endblock %}
{% block content %}
<section id="jarrapp" />
<script type="text/javascript" src="{% if cdn != '' %}{{ cdn }}bundle.min.js{% else %}{{ url_for('static', filename = 'js/bundle.min.js') }}{% endif %}"></script>
{% endblock %}
|