Skip to content

Instantly share code, notes, and snippets.

@gatanity
Created December 7, 2018 11:39
Show Gist options
  • Save gatanity/9523cf119aad03d1ff1751c8fa65ff43 to your computer and use it in GitHub Desktop.
Save gatanity/9523cf119aad03d1ff1751c8fa65ff43 to your computer and use it in GitHub Desktop.
<?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