2019-09-20 16:11:12 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }}{{ end }}</title>
|
2020-05-09 07:19:04 +00:00
|
|
|
<link rel="stylesheet" href="{{"css/main.css" | absURL }}" />
|
|
|
|
<script>
|
|
|
|
const theme = window.localStorage.getItem('theme');
|
|
|
|
if (theme) {
|
|
|
|
document.documentElement.dataset.theme = theme;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- MathJax -->
|
|
|
|
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
|
|
<script id="MathJax-script" defer src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|