mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
18 lines
340 B
PHP
18 lines
340 B
PHP
<?php
|
|
/*
|
|
Template Name: Without Page Title
|
|
*/
|
|
get_header(); the_post();
|
|
?>
|
|
|
|
<div <?php post_class('post') ?>>
|
|
<div class="content">
|
|
<?php
|
|
if( is_page() ) the_content();
|
|
else if( function_exists('siteorigin_panels_render') ) echo siteorigin_panels_render('home');
|
|
?>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php get_footer() ?>
|