mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
19 lines
297 B
PHP
19 lines
297 B
PHP
<?php
|
|
/**
|
|
* The main template file
|
|
*
|
|
* @package ascribe
|
|
* @since 0.1.0
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<h2><?php the_title(); ?></h2>
|
|
<?php the_content(); ?>
|
|
<?php endwhile; ?>
|
|
<?php endif; ?>
|
|
|
|
<?php get_footer();
|