Gentoo Archives: gentoo-commits

From: Alex Legler <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] sites/www:master commit in: _includes/layout/
Date: Sat, 28 May 2016 10:58:07
Message-Id: 1464432433.a69ca62364945bfc92194032e343f1734c1b8899.a3li@gentoo
1 commit: a69ca62364945bfc92194032e343f1734c1b8899
2 Author: Alex Legler <alex <AT> a3li <DOT> li>
3 AuthorDate: Sat May 28 10:47:13 2016 +0000
4 Commit: Alex Legler <a3li <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 10:47:13 2016 +0000
6 URL: https://gitweb.gentoo.org/sites/www.git/commit/?id=a69ca623
7
8 layout: Fix charset meta order
9
10 _includes/layout/head.html | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/_includes/layout/head.html b/_includes/layout/head.html
14 index 00fd837..45bd8c0 100644
15 --- a/_includes/layout/head.html
16 +++ b/_includes/layout/head.html
17 @@ -1,7 +1,7 @@
18 <head>
19 + <meta charset="utf-8">
20 <title>{% if page.title %}{{ page.title | strip_html }} – {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
21 {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %}
22 - <meta charset="utf-8">
23 <meta name="theme-color" content="#54487a">
24 <meta name="viewport" content="width=device-width, initial-scale=1.0">
25 <meta http-equiv="X-UA-Compatible" content="IE=edge">
26 @@ -22,4 +22,4 @@
27 <link rel="search" type="application/opensearchdescription+xml" href="https://www.gentoo.org/search/packages-gentoo-org.xml" title="Gentoo Packages">
28 <link rel="search" type="application/opensearchdescription+xml" href="https://www.gentoo.org/search/archives-gentoo-org.xml" title="Gentoo List Archives">
29 {% if page.meta %}{{ page.meta }}{% endif %}
30 -</head>
31 \ No newline at end of file
32 +</head>