init
This commit is contained in:
commit
ce1095bb24
27 changed files with 621 additions and 0 deletions
18
app/templates/countdown.html
Normal file
18
app/templates/countdown.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Countdown</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
||||
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
||||
</head>
|
||||
<body class="countdown">
|
||||
<div class="ampel-overlay">
|
||||
<div class="licht rot" id="licht1"></div>
|
||||
<div class="licht rot" id="licht2"></div>
|
||||
<div class="licht rot" id="licht3"></div>
|
||||
</div>
|
||||
<script>
|
||||
startCountdown();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in a new issue