Created
October 10, 2018 12:34
-
-
Save kdidenko/ec6278fb03b1e5121317492c4a341335 to your computer and use it in GitHub Desktop.
Very basic HTML5 page boilerplate template
This file contains 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>${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