##// END OF EJS Templates
allow cython cache dir to be deleted...
allow cython cache dir to be deleted workaround by clearing the distutils mkpath cache, which prevents it from ever creating a given path more than once. closes #3010

File last commit:

r11086:c137395d
r11168:10d191bd
Show More
fullhtml.tpl
64 lines | 1.3 KiB | application/vnd.groove-tool-template | SmartyLexer
Matthias BUSSONNIER
null template
r8997 {%- extends 'basichtml.tpl' -%}
Matthias BUSSONNIER
extract css from ipython dir
r9406 {%- block header -%}<!DOCTYPE html>
Matthias BUSSONNIER
null template
r8997 <html>
<head>
Matthias BUSSONNIER
modularize inlining
r9048 <meta charset="UTF-8">
Matthias BUSSONNIER
html title
r9329 <title>[{{nb.metadata.name}}]</title>
Matthias BUSSONNIER
move html header out
r9490 {% for css in resources.inlining.css -%}
Matthias BUSSONNIER
null template
r8997 <style type="text/css">
Matthias BUSSONNIER
modularize inlining
r9048 {{css}}
Matthias BUSSONNIER
null template
r8997 </style>
Matthias BUSSONNIER
modularize inlining
r9048 {% endfor %}
damianavila
Fixed css in reveal template and move static_html css to full_html template.
r9563
<style type="text/css">
/* Overrides of notebook CSS for static HTML export */
body {
overflow: visible;
padding: 8px;
}
.input_area {
Matthias BUSSONNIER
some css fixes due to pygment highlighter...
r10817 padding: 0.2em;
}
pre {
border: none;
margin: 0px;
font-size: 13px;
damianavila
Fixed css in reveal template and move static_html css to full_html template.
r9563 }
</style>
Matthias BUSSONNIER
null template
r8997 <script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript">
</script>
<script type="text/javascript">
init_mathjax = function() {
if (window.MathJax) {
// MathJax loaded
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
},
displayAlign: 'left', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}
}
init_mathjax();
</script>
</head>
{%- endblock header -%}
{% block body %}
Matthias BUSSONNIER
svgoutput
r9039 <body>{{ super() }}
</body>
{%- endblock body %}
Matthias BUSSONNIER
null template
r8997
{% block footer %}
Matthias BUSSONNIER
svgoutput
r9039 </html>{% endblock footer %}