netclock/templates/countdown_admin.html
2020-09-12 12:58:38 +02:00

11 lines
284 B
HTML

{% extends "base.html" %}
{% block title %}Countdown{% endblock title %}
{% block body %}
Hello from Countdown
<div id="clock"></div>
{% endblock body %}
{% block scripts %}
<script src="{{ url_for('static', filename='dist/countdown.bundle.js') }}"></script>
{% endblock scripts %}