Skip to content

Instantly share code, notes, and snippets.

@frankcleary
Last active May 17, 2023 11:38
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save frankcleary/bf7a63680a1945942195 to your computer and use it in GitHub Desktop.
Save frankcleary/bf7a63680a1945942195 to your computer and use it in GitHub Desktop.
{%- extends 'basic.tpl' -%}
{% from 'mathjax.tpl' import mathjax %}
<!DOCTYPE html>
<html>
<head>
{%- block header -%}
<meta charset="utf-8" />
<title>{{resources['metadata']['name']}}</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
{% for css in resources.inlining.css -%}
<style type="text/css">
{{ css }}
</style>
{% endfor %}
<!-- Can put analytics code here, if desired -->
<style type="text/css">
/* Overrides of notebook CSS for static HTML export */
body {
overflow: visible;
padding: 8px;
}
div#notebook {
overflow: visible;
border-top: none;
}
@media print {
div.cell {
display: block;
page-break-inside: avoid;
}
div.output_wrapper {
display: block;
page-break-inside: avoid;
}
div.output {
display: block;
page-break-inside: avoid;
}
}
</style>
<link rel="stylesheet" href="/css/ipynb.css">
<!-- Loading mathjax macro -->
{{ mathjax() }}
{%- endblock header -%}
</head>
<body>
{% block body %}
<div tabindex="-1" id="notebook" class="border-box-sizing">
<div class="container" id="notebook-container">
{{ super() }}
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 style="margin-top:0px">Back to main site: <a href="http://www.frankcleary.com">www.frankcleary.com</a></h3>
</div>
</div>
</div>
</div>
</div>
{%- endblock body %}
</body>
{% block footer %}
</html>
{% endblock footer %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment