Skip to content

Instantly share code, notes, and snippets.

@kdidenko
Created October 10, 2018 12:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdidenko/ec6278fb03b1e5121317492c4a341335 to your computer and use it in GitHub Desktop.
Save kdidenko/ec6278fb03b1e5121317492c4a341335 to your computer and use it in GitHub Desktop.
Very basic HTML5 page boilerplate template
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>${TITLE}</title>
<meta name="viewport" content="device-width, initial-scale=1">
</head>
<body>
<header>
<h1>${HEADER}</h1>
<h2>${SUBHEADER}</h2>
</header>
<section>${CONTENT}</section>
<aside>${INDEX}</aside>
<footer>${COPYRIGHT}</footer>
</body>
<script type="text/javascript" src="javascript/app.js"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment