Last active
October 10, 2022 20:06
-
-
Save worldoptimizer/042ee0fac343ee3efa2c014e6edc0d85 to your computer and use it in GitHub Desktop.
Hype Template Example 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 http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="chrome=1,IE=edge" /> | |
${viewportMetaTag} | |
<title>${title}</title> | |
<style> | |
html { | |
height:100%; | |
} | |
body { | |
background-color:#FFF; | |
margin:0; | |
height:100%; | |
} | |
</style> | |
${customHeadHTML} | |
</head> | |
<body> | |
<div id="${hypeDocumentId}" class="HYPE_document" style="${hypeDocumentStyles}"> | |
<script type="text/javascript" charset="utf-8" src="${documentLoaderScriptSource}"></script> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment