-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.php
32 lines (32 loc) · 1.11 KB
/
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
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="<?php bloginfo( 'charset' ); ?>">
<link rel="manifest" href="<?php echo get_theme_file_uri( '/manifest.json' ); ?>">
<link rel="preload" href="<?php echo get_theme_file_uri( '/fonts/roboto.woff' ); ?>" as="font" crossorigin="anonymous">
<link rel="preload" href="<?php echo get_theme_file_uri( '/fonts/roboto-bold.woff' ); ?>" as="font" crossorigin="anonymous">
<style>
@font-face {
font-family: Roboto;
src: url( <?php echo get_theme_file_uri( '/fonts/roboto.woff' ); ?> ) format( 'woff' );
}
@font-face {
font-family: Roboto;
src: url( <?php echo get_theme_file_uri( '/fonts/roboto-bold.woff' ); ?> ) format( 'woff' );
font-weight: bold;
}
<?php @include( dirname( __FILE__ ) . '/dist/critical.css.php' ); ?>
</style>
<?php wp_head() ?>
</head>
<body <?php body_class(); ?>>
<div id="app">
<!-- App Shell -->
<main class="page">
<header class="sidebar"></header>
</main>
</div>
<?php wp_footer(); ?>
</body>
</html>