mirror of
https://github.com/foo-dogsquared/hugo-theme-contentful.git
synced 2025-01-31 04:58:03 +00:00
15 lines
594 B
HTML
15 lines
594 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }}{{ end }}</title>
|
|
<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>
|