31 lines
803 B
PHP
31 lines
803 B
PHP
<!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(); ?>
|