summaryrefslogtreecommitdiffstats
path: root/templates/includes/book/exercise.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/includes/book/exercise.html')
-rw-r--r--templates/includes/book/exercise.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/templates/includes/book/exercise.html b/templates/includes/book/exercise.html
deleted file mode 100644
index 1acbe79..0000000
--- a/templates/includes/book/exercise.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<div class="header">
- <h2>Exercise</h2>
-</div>
-<div class="alert alert-success">
- <b>Correct!</b>
-</div>
-
-<div class="alert alert-danger error-message">
- <b>False!</b>
-</div>
-
-<div class="message">
- {% autoescape false %}{{ section.content }}{% endautoescape %}
-</div>
-<div class="editor" style="height: {{ section.code.solution|lines*20 }}px">{{ section.code.base }}</div>
-
-<pre class="hidden code-solution">{{ section.code.solution }}</pre>
-<pre class="hidden code-validation">{{ section.code.validation }}</pre>
-
-<div class="btn-group btn-group-justified">
- <a href="#" class="btn btn-default action-submit">Submit</a>
- <a href="#" class="btn btn-default action-solution">Solution</a>
- <a href="{{ githubHost }}{{ githubId }}/issues/new" target="_blank" class="btn btn-default">Have a Question?</a>
-</div>