git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
37 lines
808 B
PHP
37 lines
808 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Progressio
|
|
*/
|
|
|
|
$layout_type = 'full';
|
|
define('WPV_LAYOUT', 'no-sidebars');
|
|
|
|
get_header(); ?>
|
|
|
|
<?php if ( have_posts() ): the_post(); ?>
|
|
|
|
<header class="page-header">
|
|
<h1><?php
|
|
printf( __( 'Search Results for: %s', 'wpv' ), '<span>' . get_search_query() . '</span>' );
|
|
?></h1>
|
|
</header>
|
|
|
|
<div class="clearfix page-wrapper">
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
|
|
<div class="page-content">
|
|
<?php rewind_posts() ?>
|
|
<?php get_template_part('loop', 'category') ?>
|
|
</div><!-- .entry-content -->
|
|
</article>
|
|
</div>
|
|
<?php else: ?>
|
|
|
|
<header class="page-header">
|
|
<h1><?php _e('Sorry, nothing found', 'wpv') ?></h1>
|
|
</header>
|
|
|
|
<?php endif ?>
|
|
|
|
<?php get_footer(); ?>
|