~community-web-admins/unity-website/wordpress-theme

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/*
Template Name: Generic Content
*/
$template_id = 'generic';
?>

<?php get_header(); ?>

	<div class="grid-9">
 		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			<?php the_content(); ?>
		<?php endwhile; endif; ?>
	</div>

<?php get_footer(); ?>