Skip to content

Instantly share code, notes, and snippets.

@benji6
Last active July 27, 2020 09:50
Show Gist options
  • Save benji6/c45ba4c02ac564346f88f48a33c2879d to your computer and use it in GitHub Desktop.
Save benji6/c45ba4c02ac564346f88f48a33c2879d to your computer and use it in GitHub Desktop.
index.html boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="theme-color" content="{{ themeColor }}">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>{{ title }}</title>
<script defer src="index.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<noscript>You need to enable JavaScript to run this app</noscript>
{{ body }}
</body>
</html>
@benji6
Copy link
Author

benji6 commented Jan 18, 2018

Also consider http://www.heymeta.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment