-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (42 loc) · 1.61 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
<!-- Archivo de cabecera global de Wordpress -->
<?php get_header(); ?>
<!-- Page Content -->
<div class="container primary-container">
<div class="row">
<!-- Listado de posts -->
<!-- Blog Entries Column -->
<div class="col-md-8">
<!-- <h1 class="my-4">Page Heading
<small>Secondary Text</small>
</h1> -->
<?php if ( have_posts() ) : ?>
<section>
<?php while ( have_posts() ) : the_post(); ?>
<article>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<small>Publicado el <time datetime="<?php the_time('Y-m-j'); ?>"><?php the_time('j F, Y'); ?></time> por <?php the_author_posts_link() ?></small>
<?php //the_category (); ?>
<?php the_excerpt(); ?>
<?php //the_tags('<ul><li>','</li><li>','</li></ul>'); ?>
</article>
<?php endwhile; ?>
<div class="pagination">
<span><?php next_posts_link('« Entradas antiguas'); ?></span>
<span><?php previous_posts_link('Entradas más recientes »'); ?></span>
</div>
</section>
<?php else : ?>
<p><?php _e('Ups!, no hay entradas.'); ?></p>
<?php endif; ?>
</div>
<!-- Archivo de barra lateral por defecto -->
<!-- Sidebar Widgets Column -->
<div class="col-md-4">
<?php get_sidebar(); ?>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</div>
<!-- Archivo de pié global de Wordpress -->
<?php get_footer(); ?>