Created
December 7, 2018 11:39
-
-
Save gatanity/9523cf119aad03d1ff1751c8fa65ff43 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
define('STATIC_URI', get_template_directory_uri() . '/static'); | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo STATIC_URI ?>/css/home.css" /> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_class(); ?>> | |
<div id="home"> | |
<home></home> | |
</div> | |
<?php wp_footer(); ?> | |
<script type="application/javascript"> | |
const WORDPRESS_API_URL = '<?php echo get_rest_url(); ?>'; | |
</script> | |
<script src="<?php echo STATIC_URI ?>/js/home.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment