Added self-closing tags to header
Added self-closing tags to header
Reverses commit 13e9620
- Self-closed tags in the header per Ghost code spec
This commit is contained in:
parent
13e9620d0f
commit
51634b8059
16
default.hbs
16
default.hbs
|
@ -2,20 +2,20 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
{{! Document Settings }}
|
{{! Document Settings }}
|
||||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||||
|
|
||||||
{{! Page Meta }}
|
{{! Page Meta }}
|
||||||
<title>{{@blog.title}}</title>
|
<title>{{@blog.title}}</title>
|
||||||
<meta name="description" content="{{@blog.description}}">
|
<meta name="description" content="{{@blog.description}}" />
|
||||||
|
|
||||||
<meta name="HandheldFriendly" content="True">
|
<meta name="HandheldFriendly" content="True" />
|
||||||
<meta name="MobileOptimized" content="320">
|
<meta name="MobileOptimized" content="320" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
{{! Styles'n'Scripts }}
|
{{! Styles'n'Scripts }}
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css">
|
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400">
|
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400" />
|
||||||
|
|
||||||
{{! Ghost outputs important style and meta data with this tag }}
|
{{! Ghost outputs important style and meta data with this tag }}
|
||||||
{{ghost_head}}
|
{{ghost_head}}
|
||||||
|
|
Loading…
Reference in New Issue