Created
November 2, 2017 12:40
-
-
Save engyasin/a96ebb884ff66a52ead83dd6e0c759a6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- extends 'basic.tpl' -%} | |
{% from 'mathjax.tpl' import mathjax %} | |
{%- block header -%} | |
<!DOCTYPE html> | |
<html lang="ar"> | |
<head> | |
{%- block html_head -%} | |
<meta charset="utf-8" /> | |
<title>{{resources['metadata']['name']}}</title> | |
{%- if "widgets" in nb.metadata -%} | |
<script src="https://unpkg.com/[email protected].*/dist/embed.js"></script> | |
{%- endif-%} | |
<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 %} | |
<style type="text/css"> | |
/* Overrides of notebook CSS for static HTML export */ | |
body { | |
overflow: visible; | |
padding: 8px; | |
} | |
div#notebook { | |
overflow: visible; | |
border-top: none; | |
} | |
{%- if resources.global_content_filter.no_prompt-%} | |
div#notebook-container{ | |
padding: 6ex 12ex 8ex 12ex; | |
} | |
{%- endif -%} | |
@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> | |
<!-- Custom stylesheet, it must be in the same directory as the html file --> | |
<link rel="stylesheet" href="custom.css"> | |
<!-- Loading mathjax macro --> | |
{{ mathjax() }} | |
{%- endblock html_head -%} | |
</head> | |
{%- endblock header -%} | |
{% block body %} | |
<body> | |
<div tabindex="-1" id="notebook" class="border-box-sizing"> | |
<div class="container" id="notebook-container"> | |
{{ super() }} | |
</div> | |
</div> | |
</body> | |
{%- endblock body %} | |
{% block footer %} | |
{{ super() }} | |
</html> | |
{% endblock footer %} | |
{% block markdowncell %} | |
<p dir="rtl" style="text-align:right;"> | |
{{ super() }} | |
</p> | |
{% endblock markdowncell %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment