24 lines
651 B
HTML
24 lines
651 B
HTML
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php bloginfo( 'name' ); ?></title>
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
<body <?php body_class(); ?>>
|
|
<!-- Block Template Here -->
|
|
<header>
|
|
<nav><?php wp_nav_menu(); ?></nav>
|
|
</header>
|
|
<main>
|
|
<!-- Insert block-based content here -->
|
|
<div id="content">
|
|
<!-- Example: Use a WordPress block pattern or dynamic content -->
|
|
<p>Welcome to my site!</p>
|
|
</div>
|
|
</main>
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|