You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
884 B
PHP
38 lines
884 B
PHP
<?php
|
|
/**
|
|
* The front page template.
|
|
*
|
|
* This is the template that displays all pages by default.
|
|
* Please note that this is the WordPress construct of pages
|
|
* and that other 'pages' on your WordPress site will use a
|
|
* different template.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
get_header();
|
|
|
|
$bavotasan_theme_options = bavotasan_theme_options();
|
|
global $wp_query;
|
|
if ( have_posts() ) {
|
|
if ( 'page' == get_option( 'show_on_front' ) ) {
|
|
include( get_page_template() );
|
|
} else {
|
|
?>
|
|
<div id="primary" class="clearfix">
|
|
<div id="content" class="sticky-container">
|
|
<?php bavotasan_front_page_render(); ?>
|
|
<?php if ( is_active_sidebar( 'home-page-corner' ) ) { ?>
|
|
<div class="stamp">
|
|
<?php dynamic_sidebar( 'home-page-corner' ); ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php bavotasan_pagination(); ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
|
|
<?php get_footer(); ?>
|