-
Notifications
You must be signed in to change notification settings - Fork 1
/
busqueda-global.php
40 lines (26 loc) · 965 Bytes
/
busqueda-global.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/*
Template Name: Búsqueda global
*/
?>
<?php get_header(); ?>
<div id="main" class="left-align">
<div id="container">
<div id="content">
<div class="navigation skip" id="nav-above">
<div class="nav-previous"><a href="#"><span class="meta-nav">←</span> Older posts</a></div>
<div class="nav-next"></div>
</div><!-- end nav-above -->
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="post" id="post">
<div id="left-post-content-globalsearch">
<h2 class="titulo-archivo">
<a rel="bookmark" title="Permalink" href="<?php the_permalink(); ?>">Resultados en toda la red de blogs</a>
</h2>
<?php the_content(); ?>
</div><!-- end left-post-content -->
<?php endwhile; ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>