-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlayout.html
More file actions
22 lines (21 loc) · 784 Bytes
/
Copy pathlayout.html
File metadata and controls
22 lines (21 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "!layout.html" %}
{% block linktags %}
<script type="text/javascript" src="http://sagecell.sagemath.org/static/jquery.min.js"></script>
<script type="text/javascript" src="http://sagecell.sagemath.org/static/embedded_sagecell.js"></script>
<script type="text/javascript">
sagecell.makeSagecell({inputLocation: ".sage_linked",
linked: true});
sagecell.makeSagecell({inputLocation: ".sage_unlinked",
linked: false});
</script>
<style type="text/css">
.sagecell .CodeMirror-scroll {
overflow-y: hidden;
overflow-x: auto;
}
.sagecell .CodeMirror {
height: auto;
}
</style>
{{ super() }}
{% endblock %}