Theme Files

This commit is contained in:
Jeremy Rangel
2024-11-13 16:32:19 -08:00
parent 8de1a43a8c
commit f356906bb1
2 changed files with 28 additions and 0 deletions

23
templates/index.html Normal file
View File

@ -0,0 +1,23 @@
<!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>