File: /home/dwauav0tm6jp/hosted/austinseminoles_com/wp-content/themes/asc2015/single.php
<?php
/**
* Default Post Template
* Description: Post template with a content container and right sidebar.
*
* @package WordPress
* @subpackage BootstrapWP
*/
get_header(); ?>
<?php while (have_posts()) : the_post(); ?>
<div id="main" class="main">
<div id="banner-section" class="section">
<header>
<div class="container">
<div id="logo">
<svg width="214px">
<use xlink:href="#asc-logo" />
</svg>
</div>
<div id="main-menu"><?php wp_nav_menu(); ?></div>
</div>
</header>
</div>
<div class="container post">
<h1><?php the_title();?></h1>
<h4><?php the_date(); ?></h4>
<div class="row content">
<div class="col-sm-8">
<p class="meta"></p>
<?php the_content(); ?>
<?php the_tags('<p>Tags: ', ', ', '</p>'); ?>
<?php endwhile; // end of the loop. ?>
<hr/>
</div><!-- /.span8 -->
</div><!-- /.row .content -->
</div><!--/.container -->
</div><!-- /.main -->
<?php get_footer(); ?>