diff options
Diffstat (limited to 'apps/tools/templates')
| -rw-r--r-- | apps/tools/templates/tools/hangboard-timer.html | 28 | ||||
| -rw-r--r-- | apps/tools/templates/tools/index.html | 7 |
2 files changed, 35 insertions, 0 deletions
diff --git a/apps/tools/templates/tools/hangboard-timer.html b/apps/tools/templates/tools/hangboard-timer.html new file mode 100644 index 0000000..248db62 --- /dev/null +++ b/apps/tools/templates/tools/hangboard-timer.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} +{% load static %} + + +{% block title %}Hangboard-Timer - fsweb{% endblock %} + + +{% block morelinks %} +<link rel="stylesheet" type="text/css" href="{% static 'tools/css/hangboard-timer.css' %}"> +{% endblock %} + + +{% block content %} +<h1>Hangboard Timer</h1> +<p>Increase your finger strength! Routine adopted from <a href="https://www.youtube.com/watch?v=3FNZdixeuZw">this</a> video.</p> + +<div class="timer-container"> + <div id="countdown"></div> + <div id="exercise_state"></div> + <div id="exercise_name"></div> + <div class="button-container"> + <button id="btn-start">Start</button> + <button id="btn-reset">Reset</button> + </div> +</div> + +<script src="{% static 'tools/js/hangboard-timer.js' %}"></script> +{% endblock %} diff --git a/apps/tools/templates/tools/index.html b/apps/tools/templates/tools/index.html new file mode 100644 index 0000000..45ed82f --- /dev/null +++ b/apps/tools/templates/tools/index.html @@ -0,0 +1,7 @@ +{% extends 'base.html' %} + +{% block title %}Tools - fsweb{% endblock %} + +{% block content %} + <h1>Welcome to the Tools Page</h1> +{% endblock %} |
