add initial codes.
This commit is contained in:
41
page.php
Normal file
41
page.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php get_header(); ?>
|
||||
|
||||
<!-- [ #container ] -->
|
||||
<div id="container" class="innerBox">
|
||||
<!-- [ #content ] -->
|
||||
<div id="content" class="content side">
|
||||
|
||||
<div class="bcnlist">
|
||||
<?php if(function_exists('bcn_display'))
|
||||
{
|
||||
bcn_display();
|
||||
}?>
|
||||
</div>
|
||||
|
||||
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
||||
<div id="post-<?php the_ID(); ?>" class="entry-content">
|
||||
|
||||
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||
|
||||
<?php the_content(); ?>
|
||||
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . 'Pages:', 'after' => '</div>' ) ); ?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<?php edit_post_link(__('Edit', 'bizvektor-global-edition'),'<div class="adminEdit"><span class="linkBtn linkBtnS linkBtnAdmin">','</span></div>'); ?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php get_template_part('module_mainfoot'); ?>
|
||||
<?php comments_template( '', true ); ?>
|
||||
</div>
|
||||
<!-- [ /#content ] -->
|
||||
|
||||
<!-- [ #sideTower ] -->
|
||||
<div id="sideTower" class="sideTower side">
|
||||
<?php get_sidebar('page'); ?>
|
||||
</div>
|
||||
<!-- [ /#sideTower ] -->
|
||||
</div>
|
||||
<!-- [ /#container ] -->
|
||||
|
||||
<?php get_footer(); ?>
|
Reference in New Issue
Block a user