added exploritory page
This commit is contained in:
parent
908a4608a1
commit
9f3c4e828c
4 changed files with 18593 additions and 0 deletions
37
src/templates/Exploritory.html
Normal file
37
src/templates/Exploritory.html
Normal 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 %}
|
||||
6837
src/templates/Exploritory_nb.html
Normal file
6837
src/templates/Exploritory_nb.html
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue