Replace type="text/css" with media="screen"

The type is actually no necessary for rel="stylesheet", and this
stylesheet is only meant for screen interfaces, not the default “all”.
This commit is contained in:
jordi fita mas 2023-07-23 20:44:06 +02:00
parent 403c27f1e1
commit 25bf186a83
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ template "title" . }} — Camper</title> <title>{{ template "title" . }} — Camper</title>
<link rel="stylesheet" type="text/css" href="/static/camper.css"> <link rel="stylesheet" media="screen" href="/static/camper.css">
</head> </head>
<body> <body>
<header> <header>