while (have_posts()) {
    the_post();
    ?>
		<header>
			<h1 class="page-title"><?php 
    the_title();
    ?>
</h1>
		</header>
		
		<section class="content">
			<?php 
    the_content();
    ?>
			
			<div class="tag-cloud">
				<?php 
    wp_tag_cloud('number=0');
    ?>
			</div>
		</section>
		
	<?php 
}
?>
</section>

<?php 
gk_load('after');
gk_load('footer');
// EOF
Example #2
0
	<?php 
if (is_singular() && get_option('thread_comments')) {
    wp_enqueue_script('comment-reply');
}
?>
	
	<?php 
do_action('gavernwp_ie_scripts');
?>
	
	<?php 
gk_head_shortcodes();
?>
		  
	<?php 
gk_load('responsive_css');
if (get_option($gk_tpl->name . "_overridecss_state", 'Y') == 'Y') {
    wp_enqueue_style('gavern-override', gavern_file_uri('css/override.css'), array('gavern-style'));
}
?>
	
	<?php 
if (get_option($gk_tpl->name . '_prefixfree_state', 'N') == 'Y') {
    wp_enqueue_script('gavern-prefixfree', gavern_file_uri('js/prefixfree.js'));
}
?>
	
	<?php 
gk_head_style_css();
?>
	<?php 
if (gk_is_active_sidebar('social')) {
    ?>
	<div id="gk-social-icons" class="<?php 
    echo get_option($tpl->name . '_social_icons_position', 'right');
    ?>
">
		<?php 
    gk_dynamic_sidebar('social');
    ?>
	</div>
	<?php 
}
?>
	
	<?php 
gk_load('social');
?>
	
	<?php 
do_action('gavernwp_footer');
?>
	
	<?php 
echo stripslashes(htmlspecialchars_decode(str_replace('&#039;', "'", get_option($tpl->name . '_footer_code', ''))));
?>
	
	<?php 
wp_footer();
?>
	
	<?php 
<?php

// This file was added especially for the wp-signup.php and wp-activate.php files :-)
gk_load('header');
gk_load('before');
// EOF