added exploritory page

This commit is contained in:
Walker Waylon Scott 2017-07-17 22:27:15 -05:00
parent 908a4608a1
commit 9f3c4e828c
4 changed files with 18593 additions and 0 deletions

File diff suppressed because it is too large Load diff

View file

View file

@ -0,0 +1,37 @@
{% extends "layout.html" %}
{% set active_page = "exploritory" %}
{% block title %}exploritory{% endblock %}
{% block head %}
{{ super() }}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel='stylesheet' type='text/css' href='static/css/wsw_notebook.css'>
{% endblock %}
{% block body %}
{{ super ()}}
<div class='notebook-container' style='float:center; max-width: 800px; margin-left:auto; margin-right:auto' >
{{ body | safe }}
</div>
<!-- {{ body | safe }} -->
<script>
// $('.output_html').hide()
// $('.input_area').hide()
// $('.prompt').hide()
// $('.output_html').hide()
var button_html = '<button id="output-html-btn">toggle tables</button> <button id="show-code-btn">toggle code</button>'
$('#buttons').html(button_html)
$('.prompt').hide()
$('.output_html').hide()
$('.input_area').hide()
$('#output-html-btn').click(function (){
$('.output_html').toggle()
});
$('#show-code-btn').click(function (event){
$('.input_area').toggle()
});
</script>
{% endblock %}

File diff suppressed because it is too large Load diff