Add the viewport meta tag and other similar things

This commit is contained in:
Danila Fedorin 2019-08-06 03:48:29 -07:00
parent 62c3f15896
commit 914b93989c
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
<head>
{{ $style := resources.Get "scss/style.scss" | resources.ToCSS | resources.Minify }}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#1dc868" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Lora|Raleway" rel="stylesheet">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
{{ $style := resources.Get "scss/style.scss" | resources.ToCSS | resources.Minify }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML' async></script>
</head>