diff options
author | 2018-03-21 22:37:37 +0000 | |
---|---|---|
committer | 2018-03-21 22:37:37 +0000 | |
commit | 5e27c8ebdce0f5542ca94e2dd2970cdfd7f08d24 (patch) | |
tree | fd62efbf41141b89f3eae81ba1e56b79dec7f94c /templates/main | |
parent | Countdown (diff) |
Rewrite countdown; Now a notification present on all pages
Diffstat (limited to 'templates/main')
-rw-r--r-- | templates/main/base.html | 4 | ||||
-rw-r--r-- | templates/main/index.html | 7 |
2 files changed, 3 insertions, 8 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index 2a1a1481..596d47e8 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -6,7 +6,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script> - <script defer src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/js/uikit.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/js/uikit.min.js"></script> <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"> <link rel="stylesheet" href="/static/uikit_blurple.css"/> <link rel="stylesheet" href="/static/style.css"/> @@ -47,5 +47,7 @@ </div> </div> </footer> + + <script src='/static/js/countdown.js'></script> </body> </html> diff --git a/templates/main/index.html b/templates/main/index.html index 7fb49df7..c7a31f17 100644 --- a/templates/main/index.html +++ b/templates/main/index.html @@ -32,11 +32,4 @@ </div> </div> - <div class="uk-align-center uk-text-center"> - <a href="/info/jams"><h1 id="countdown-title" class="uk-text-center">Code Jam Countdown</h1></a> - <div class="uk-text-center"> - <h1 id="remaining"></h1> - </div> - </div> -<script src='/static/js/countdown.js'></script> {% endblock %}
\ No newline at end of file |