Working parcel setup

This commit is contained in:
Patrick Smith
2018-08-02 13:51:54 -04:00
parent 5b764a51fb
commit 015adaf30f
39 changed files with 349 additions and 72 deletions

View File

@@ -8,9 +8,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% block title %}JEDI{% endblock %}</title>
{% assets "css" %}
<link rel="stylesheet" href="{{ ASSET_URL }}" type="text/css">
{% endassets %}
<link rel="stylesheet" href="{{ url_for('static', filename='assets/index.css') }}">
<link rel="icon" type="image/x-icon" href="/static/img/favicon.ico">
</head>
<body class="{% if g.modalOpen %} modalOpen{% endif %}">
@@ -34,5 +32,6 @@
{% include 'footer.html' %}
{% block modal %}{% endblock %}
<script src="{{ url_for('static', filename='assets/index.js') }}"></script>
</body>
</html>