Merge pull request #21 from sethlilly/theme-development
Removed closing slash in description `meta` tag
This commit is contained in:
commit
1f1e2062b7
14
default.hbs
14
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