-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
36 lines (29 loc) · 889 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Ulmus
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body id="body" <?php body_class(); ?>>
<?php wp_footer(); ?>
<script>
var app = Elm.Ulmus.init();
app.ports.apiUrl.send( '<?php echo esc_url( home_url() ); ?>/wp-json/wp/v2/' );
</script>
</body>
</html>