doctype
html

	head

		meta(charset="utf8")
		meta(http-equiv="Content-type", content="text/html; charset=UTF-8")
		meta(http-equiv="X-UA-Compatible", content="IE=edge, chrome=1")
		meta(name="viewport", content="width=device-width, minimum-scale=1.0")
		
		//- change these or use content="#{variable}"" from content.json
		meta(name="author", content= "")
		meta(name="description", content="")
		meta(name="og:title", content="")
		meta(name="og:description", content="")
		meta(name="og:image", content="")
		meta(name="og:url", content="")

		//- you can generate all of these at http://realfavicongenerator.net
		link(rel="apple-touch-icon", sizes="57x57", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-57x57.png")
		link(rel="apple-touch-icon", sizes="114x114", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-114x114.png")
		link(rel="apple-touch-icon", sizes="72x72", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-72x72.png")
		link(rel="apple-touch-icon", sizes="144x144", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-144x144.png")
		link(rel="apple-touch-icon", sizes="60x60", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-60x60.png")
		link(rel="apple-touch-icon", sizes="120x120", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-120x120.png")
		link(rel="apple-touch-icon", sizes="76x76", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-76x76.png")
		link(rel="apple-touch-icon", sizes="152x152", href="<% if (localised) { %>../<% } %>images/favicons/apple-touch-icon-152x152.png")
		link(rel="icon", type="image/png", href="<% if (localised) { %>../<% } %>images/favicons/favicon-16x16.png", sizes="16x16")
		link(rel="icon", type="image/png", href="<% if (localised) { %>../<% } %>images/favicons/favicon-32x32.png", sizes="32x32")
		link(rel="icon", type="image/png", href="<% if (localised) { %>../<% } %>images/favicons/favicon-96x96.png", sizes="96x96")
		link(rel="icon", type="image/png", href="<% if (localised) { %>../<% } %>images/favicons/favicon-160x160.png", sizes="160x160")
		meta(name="msapplication-TileColor", content="#3498db")
		meta(name="msapplication-TileImage", content="<% if (localised) { %>../<% } %>images/favicons/mstile-144x144.png")

		title
			block title<% if (ie8) { %>

		//if lt IE 9
			script(src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/r29/html5.min.js")<% } %>

		//- keep @@ so that the filename can be updated by gulp
		link(rel="stylesheet", href="<% if (localised) { %>../<% } %>styles/@@main.min.css")
		link(rel="shortcut icon", href="<% if (localised) { %>../<% } %>favicon.ico")
		link(rel="bookmark", href="<% if (localised) { %>../<% } %>favicon.ico")

		block css

	body
<% if (svgicons) { %>
		include ../../../public/images/icons/sprites/svg-defs.svg
<% } %>
		include ../includes/header

		block content

		include ../includes/footer

		//- keep @@ so that the filename can be updated by gulp
		script(src="<% if (localised) { %>../<% } %>scripts/@@main.min.js")
		block script