Default layout progress

This commit is contained in:
Eduardo Gomez 2019-02-19 17:22:38 +01:00
parent e81e1344d0
commit 5bf88d07f4
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{!-- Base Meta --}}
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{!-- Styles'n'Scripts --}}
<link rel="stylesheet" type="text/css" href="{{asset "css/app.css"}}" />
{{!-- This tag outputs SEO meta+structured data and other important settings --}}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{!-- The #block helper will pull in data from the #contentFor other template files --}}
{{{block "scripts"}}}
{{!-- Ghost outputs important scripts and data with this tag --}}
{{ghost_foot}}
</body>
</html>

View file

@ -0,0 +1,2 @@
{{!< default}}
{{!-- Insert everything in this file into the {body} of the default.hbs template --}}