aboutsummaryrefslogtreecommitdiff
path: root/app/templates/demo/learn.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/demo/learn.html')
-rw-r--r--app/templates/demo/learn.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/templates/demo/learn.html b/app/templates/demo/learn.html
new file mode 100644
index 0000000..8d3d6c9
--- /dev/null
+++ b/app/templates/demo/learn.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% import 'bootstrap/wtf.html' as wtf %}
+
+{% block styles %}
+{{ super() }}
+<link rel="stylesheet" href="{{url_for('static', filename='css/demo/learn.css')}}">
+{% endblock %}
+
+{% block app_content %}
+<h1>{{ title }}</h1>
+
+<div id="lesson" class="row">
+ <div class="col-md-6">
+ {{ text | safe }}
+ </div>
+</div>
+
+<div class="row">
+ <div id="next-btn" class="col-md-6">
+ {{ wtf.quick_form(form, button_map={'submit': 'primary'}) }}
+ </div>
+</div>
+{% endblock %}