summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2019-02-22 10:56:29 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2019-02-22 10:56:29 +0100
commitecc81c0ee2f38050927e1a6cb5423abbd7eb51ad (patch)
tree085dca151ca41f3a6175f8931aa498799bc9b829
parentcabc62f0743be6c6e935f25a90c983d09aeb0e85 (diff)
downloadarchweb-ecc81c0ee2f38050927e1a6cb5423abbd7eb51ad.tar.gz
archweb-ecc81c0ee2f38050927e1a6cb5423abbd7eb51ad.zip
templates: remove deprecated projection property
The media="projection" property is read by browsers but does not match anything remove it so our site is valid HTML. Closes: #184 Signed-off-by: Jelle van der Waa <jelle@vdwaa.nl>
-rw-r--r--templates/base.html2
-rw-r--r--templates/devel/clock.html2
-rw-r--r--templates/mirrors/mirror_details.html2
-rw-r--r--templates/mirrors/mirrors.html2
-rw-r--r--templates/mirrors/status.html2
-rw-r--r--templates/mirrors/url_details.html2
-rw-r--r--templates/packages/flaghelp.html2
-rw-r--r--templates/public/download.html2
-rw-r--r--templates/public/userlist.html2
9 files changed, 9 insertions, 9 deletions
diff --git a/templates/base.html b/templates/base.html
index 0a1ea01d..27b675a6 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<title>{% block title %}Arch Linux{% endblock %}</title>
- <link rel="stylesheet" type="text/css" href="{% static "archweb.css" %}" media="screen, projection" />
+ <link rel="stylesheet" type="text/css" href="{% static "archweb.css" %}" media="screen" />
<link rel="icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
<link rel="shortcut icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
<link rel="apple-touch-icon" href="{% static "logos/apple-touch-icon-57x57.png" %}" />
diff --git a/templates/devel/clock.html b/templates/devel/clock.html
index 88cc93e7..57279cc8 100644
--- a/templates/devel/clock.html
+++ b/templates/devel/clock.html
@@ -5,7 +5,7 @@
{% block title %}Arch Linux - Developer World Clocks{% endblock %}
-{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
+{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />{% endblock %}
{% block content %}
<div id="dev-clocks-box" class="box">
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html
index 05a4b0da..89345664 100644
--- a/templates/mirrors/mirror_details.html
+++ b/templates/mirrors/mirror_details.html
@@ -5,7 +5,7 @@
{% block title %}Arch Linux - {{ mirror.name }} - Mirror Details{% endblock %}
-{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
+{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />{% endblock %}
{% block content %}
<div class="box">
diff --git a/templates/mirrors/mirrors.html b/templates/mirrors/mirrors.html
index 55eb0f8c..d6b93f92 100644
--- a/templates/mirrors/mirrors.html
+++ b/templates/mirrors/mirrors.html
@@ -4,7 +4,7 @@
{% block title %}Arch Linux - Mirror Overview{% endblock %}
-{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
+{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />{% endblock %}
{% block content %}
<div id="dev-mirrorlist" class="box">
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html
index fb318480..eb80e502 100644
--- a/templates/mirrors/status.html
+++ b/templates/mirrors/status.html
@@ -4,7 +4,7 @@
{% block title %}Arch Linux - Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}{% endblock %}
-{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
+{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />{% endblock %}
{% block content %}
<div id="mirrorstatus" class="box">
diff --git a/templates/mirrors/url_details.html b/templates/mirrors/url_details.html
index 6e64b08c..ca2211d3 100644
--- a/templates/mirrors/url_details.html
+++ b/templates/mirrors/url_details.html
@@ -5,7 +5,7 @@
{% block title %}Arch Linux - {{ url.url }} - URL Details{% endblock %}
-{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
+{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />{% endblock %}
{% block content %}
<div class="box">
diff --git a/templates/packages/flaghelp.html b/templates/packages/flaghelp.html
index 579d3a1e..5791fda2 100644
--- a/templates/packages/flaghelp.html
+++ b/templates/packages/flaghelp.html
@@ -5,7 +5,7 @@
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
<link rel="shortcut icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
- <link rel="stylesheet" type="text/css" href="{% static "flaghelp.css" %}" media="screen, projection" />
+ <link rel="stylesheet" type="text/css" href="{% static "flaghelp.css" %}" media="screen" />
</head>
<body>
<h3>Flagging Packages</h3>
diff --git a/templates/public/download.html b/templates/public/download.html
index f3c3d6ae..fb9eea02 100644
--- a/templates/public/download.html
+++ b/templates/public/download.html
@@ -6,7 +6,7 @@
{% block title %}Arch Linux - Downloads{% endblock %}
{% block head %}
-<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />
+<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />
<link rel="alternate" type="application/rss+xml" title="Arch Linux Releases" href="/feeds/releases/" />
{% endblock %}
diff --git a/templates/public/userlist.html b/templates/public/userlist.html
index b49c5de2..8ce55f9f 100644
--- a/templates/public/userlist.html
+++ b/templates/public/userlist.html
@@ -4,7 +4,7 @@
{% block title %}Arch Linux - {{ group.name }}{% endblock %}
-{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
+{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen" />{% endblock %}
{% block content %}
{% cache 600 dev-tu-profiles group.name %}