ildi-wp/index.php

20 lines
296 B
PHP
Raw Normal View History

2018-04-24 20:41:34 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<?php wp_head(); ?>
</head>
<body>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title( '<h1>', '</h1>' );
the_content();
}
}
wp_footer();
?>
</body>
</html>