aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/home.html
blob: bc38d189ae2c08acfc2331c1e1255374d086d8ca (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="newspipeapp"></section>
    <script type="text/javascript" src="{% if cdn != '' %}{{ cdn }}bundle.min.js{% else %}{{ url_for('static', filename = 'js/bundle.min.js') }}{% endif %}"></script>
{% endblock %}
bgstack15