Remove the type attribute from stylesheet link
It is, apparently, the current recommendation according to MDN[0]. [0]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link#type
This commit is contained in:
parent
f1e876d4fb
commit
12b3b4ad12
|
@ -6,7 +6,7 @@
|
||||||
<meta name="application-name" content="Numerus">
|
<meta name="application-name" content="Numerus">
|
||||||
<meta name="generator" content="Numerus {{ numerusVersion }}">
|
<meta name="generator" content="Numerus {{ numerusVersion }}">
|
||||||
<title>{{ template "title" . }} — Numerus</title>
|
<title>{{ template "title" . }} — Numerus</title>
|
||||||
<link rel="stylesheet" type="text/css" media="screen" href="/static/numerus.css?v={{ numerusVersion }}">
|
<link rel="stylesheet" media="screen" href="/static/numerus.css?v={{ numerusVersion }}">
|
||||||
<script src="/static/htmx@1.9.2.min.js"></script>
|
<script src="/static/htmx@1.9.2.min.js"></script>
|
||||||
<script type="module" src="/static/custom-elements@1.3.0.min.js"></script>
|
<script type="module" src="/static/custom-elements@1.3.0.min.js"></script>
|
||||||
<script type="module" src="/static/numerus.js?v={{ numerusVersion }}"></script>
|
<script type="module" src="/static/numerus.js?v={{ numerusVersion }}"></script>
|
||||||
|
|
Loading…
Reference in New Issue