Skip to content
This repository was archived by the owner on Sep 15, 2020. It is now read-only.

Commit db562c1

Browse files
committed
header.html: move viewport tag after the charset one.
1 parent 6515e20 commit db562c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<html lang="en" class="no-js" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/WebPage">
33
<head>
44
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
56

67
{% capture title %}{% if paginator.page and paginator.page != 1 %}{{ page.title }} - Page {{ paginator.page }}{% else %}{{ page.title }}{% endif%} &middot; MPC-HC{% endcapture %}
78
<title>{{ title }}</title>
8-
<meta name="viewport" content="width=device-width, initial-scale=1">
99

1010
{% capture meta_description %}{% if page.description %}{{ page.description }}{% if paginator.page and paginator.page != 1 %} - Page {{ paginator.page }}{% endif%}{% elsif page.excerpt %}{{ page.excerpt | newline_to_br | replace: '<br />', ' ' | strip_html | strip_newlines | replace: ' ', ' ' | rstrip | truncate: 155 }}{% else %}{{ site.description }}{% endif %}{% endcapture %}
1111
<meta name="description" content="{{ meta_description }}">

0 commit comments

Comments
 (0)