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:
jordi fita mas 2025-01-17 12:42:57 +01:00
parent f1e876d4fb
commit 12b3b4ad12
1 changed files with 1 additions and 1 deletions

View File

@ -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>