html_full.tpl
67 lines
| 1.5 KiB
| application/vnd.groove-tool-template
|
SmartyLexer
Jonathan Frederic
|
r11734 | {%- extends 'html_basic.tpl' -%} | |
Matthias BUSSONNIER
|
r8997 | ||
damianavila
|
r11770 | ||
{%- block header -%} | |||
<!DOCTYPE html> | |||
Matthias BUSSONNIER
|
r8997 | <html> | |
<head> | |||
Matthias BUSSONNIER
|
r9048 | <meta charset="UTF-8"> | |
Matthias BUSSONNIER
|
r9329 | <title>[{{nb.metadata.name}}]</title> | |
Matthias BUSSONNIER
|
r9490 | {% for css in resources.inlining.css -%} | |
damianavila
|
r11770 | <style type="text/css"> | |
{{ css }} | |||
</style> | |||
Matthias BUSSONNIER
|
r9048 | {% endfor %} | |
damianavila
|
r9563 | ||
<style type="text/css"> | |||
/* Overrides of notebook CSS for static HTML export */ | |||
body { | |||
overflow: visible; | |||
padding: 8px; | |||
} | |||
.input_area { | |||
Matthias BUSSONNIER
|
r10817 | padding: 0.2em; | |
} | |||
pre { | |||
damianavila
|
r11548 | padding: 0.2em; | |
Matthias BUSSONNIER
|
r10817 | border: none; | |
margin: 0px; | |||
font-size: 13px; | |||
damianavila
|
r9563 | } | |
</style> | |||
damianavila
|
r11247 | <!-- Custom stylesheet, it must be in the same directory as the html file --> | |
<link rel="stylesheet" href="custom.css"> | |||
damianavila
|
r11770 | <script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> | |
Matthias BUSSONNIER
|
r8997 | <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 %} | |||
damianavila
|
r11770 | <body> | |
{{ super() }} | |||
Matthias BUSSONNIER
|
r9039 | </body> | |
{%- endblock body %} | |||
Matthias BUSSONNIER
|
r8997 | ||
{% block footer %} | |||
damianavila
|
r11770 | </html> | |
{% endblock footer %} |