-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
43 lines (35 loc) · 1.54 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<title>DSC 40B Practice Problems</title>
<link rel="stylesheet" href="https://matcha.mizu.sh/matcha.css">
<link rel="stylesheet" href="{relative_path_to_root}/style.css">
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({{
tex: {{
inlineMath: [ ['$$','$$'], ["\\(","\\)"] ],
displayMath: [ // start/end delimiter pairs for display math
['\\[', '\\]']
],
processEscapes: true
}}
}});
</script>
<!-- highlightjs -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/go.min.js"></script>
<script>hljs.highlightAll();</script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script>
</head>
<body data-color-scheme="light">
<div style="margin: .5em 0em; font-size: 2em;">
<a href="{relative_path_to_root}">DSC 40B Practice Problems</a>
</div>
{body}
</body>
</html>