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 manifest="" <?php language_attributes(); ?>> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, | |
maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" /> | |
<!-- load other meta tags here --> | |
<title><?php echo get_bloginfo("name");?></title> | |
<link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/style.css" /> | |
<script | |
src="<?php echo get_template_directory_uri();?>/js/bundle.js" | |
type="text/javascript"> | |
</script> | |
<script> | |
if('serviceWorker' in navigator) { | |
navigator.serviceWorker | |
.register('/sw.js') | |
.then(function() { console.log("Service Worker Registered"); }); | |
} | |
</script> | |
</head> | |
<body> | |
<noscript> | |
You need to enable JavaScript to run this app. | |
</noscript> | |
<div id="root" style="height:100%"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment