diff options
author | Prefetch | 2021-02-20 13:46:18 +0100 |
---|---|---|
committer | Prefetch | 2021-02-20 13:46:18 +0100 |
commit | e71c14aa725d71a2ea7310c69b3d11a8bc12c0b0 (patch) | |
tree | 987d344c8758d3250cf5c997891b8e645dd00594 /latex/template.html | |
parent | f7d88d0ae1c5544cc517ae6b25970f82d82b1496 (diff) |
Add latex/ directory + fix MathJax renderer
Diffstat (limited to 'latex/template.html')
-rw-r--r-- | latex/template.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/latex/template.html b/latex/template.html new file mode 100644 index 0000000..3764f3a --- /dev/null +++ b/latex/template.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$> +<head> + <meta charset="utf-8" /> + <meta name="generator" content="pandoc" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> + <title>Prefetch | $pagetitle$</title> + <link rel="icon" href="data:,"> + <style> + $main.css()$ + </style> + <script> + MathJax = { + loader: {load: ["[tex]/physics"]}, + tex: {packages: {"[+]": ["physics"]}} + }; + </script> + $if(math)$ + $math$ + $endif$ +</head> +<body> +<div class="nav"> +<div class="navl"><a href="/">PREFETCH</a></div> +<div class="navr"> +<a href="/blog/">blog</a>  +<a href="/code/">code</a>  +<a href="/know/">know</a> +</div> +</div> +<hr> +$body$ +<hr> +© "Prefetch". Licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>. +</body> +</html> |