1.1.0
This commit is contained in:
31
page.php
Normal file
31
page.php
Normal 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(); ?>
|
||||
Reference in New Issue
Block a user