HEX
Server: Apache
System: Linux p3plzcpnl489499.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: dwauav0tm6jp (6177017)
PHP: 7.4.33
Disabled: NONE
Upload Files
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(); ?>