Created
March 11, 2018 03:57
-
-
Save rquast/7f645a41b9ee95f78aac8df1609de3a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title><%- htmlWebpackPlugin.options.metadata.title %></title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="mobile-web-app-capable" content="yes"> | |
<base href="<%- htmlWebpackPlugin.options.metadata.baseUrl %>"> | |
<link href="https://fonts.googleapis.com/css?family=Heebo:300,400,500,700|Karla:400,700" rel="stylesheet"> | |
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png"> | |
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> | |
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> | |
<link rel="manifest" href="/static/manifest.json"> | |
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#5bbad5"> | |
<link rel="shortcut icon" href="/static/favicon.ico"> | |
<meta name="msapplication-config" content="/static/browserconfig.xml"> | |
<meta name="theme-color" content="#ffffff"> | |
<meta property="og:image" content="{{og:image}}"> | |
<meta property="og:image:height" content="{{og:image:height}}"> | |
<meta property="og:image:width" content="{{og:image:width}}"> | |
<meta property="og:title" content="{{og:title}}"> | |
<meta property="og:description" content="{{og:description}}"> | |
<meta property="og:url" content="{{og:url}}"> | |
<style> | |
html { | |
background: #fff; | |
font-size: 1em; | |
font-weight: normal; | |
overflow-y: scroll; | |
height: 100%; | |
} | |
body { | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
-webkit-font-smoothing: antialiased; | |
} | |
</style> | |
</head> | |
<body aurelia-app="main"> | |
<!-- Global site tag (gtag.js) - Google Analytics --> | |
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111545967-1"></script> | |
<script> | |
window.dataLayer = window.dataLayer || []; | |
function gtag(){dataLayer.push(arguments);} | |
gtag('js', new Date()); | |
gtag('config', 'UA-111545967-1'); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment