Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
1a53b1f463
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (21 sloc) 798 Bytes
<?php
/**
Template Name: News
* This page template has no padding, and does not display the page title.
* Useful for large images, iframes, or other edge cases.
*/
get_header(); ?>
<div id="page-news">
<?php include get_template_directory().'/inc/sidebar-check.php';?>
<?php while ( have_posts() ) : the_post(); ?>
<?php include get_template_directory().'/inc/submenu-check.php';?>
<div class="row">
<div class="col-sm-<?php echo (is_active_sidebar( $sidebar )?9:12); ?>">
<?php get_template_part( 'content', 'blank' ); ?>
</div>
<?php include get_template_directory().'/inc/sidebar-if-active.php';?>
</div>
<?php include get_template_directory().'/inc/submenu-closing-tags.php';?>
<?php endwhile; // end of the loop. ?>
</div>
<?php get_footer(); ?>