This commit is contained in:
root
2025-08-18 17:56:26 -04:00
parent 737e558e3f
commit 035dc77d8e
12 changed files with 189 additions and 49 deletions

31
page.php Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MxDev</title>
<?php wp_head(); // Crucial: Allows plugins to add scripts and styles ?>
</head>
<body <?php body_class(); ?>></body>
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while (have_posts()):
the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</main>
</div>
<?php get_footer(); ?>