pytutorial/_layouts/default.html
David Rotermund 2e5e4d2b6e
Update default.html
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-02 04:29:43 +01:00

33 lines
591 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ page.title | default: site.title }}</title>
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ["$'", "'$"]]
}
};
</script>
</head>
<body>
<header>
<h1>{{ site.title }}</h1>
</header>
<!-- Main content -->
<main>
{{ content }}
</main>
</body>
</html>