-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
49 lines (39 loc) · 1.47 KB
/
single.php
File metadata and controls
49 lines (39 loc) · 1.47 KB
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
<!-- 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() ) : the_post(); ?>
<section>
<article>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<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_content(); ?>
<?php //the_tags('<ul><li>','</li><li>','</li></ul>'); ?>
<address>Por <?php the_author_posts_link() ?></address>
</article>
<!-- Comentarios -->
<?php comments_template(); ?>
</section>
<?php else : ?>
<p><?php _e('Ups!, esta entrada no existe.'); ?></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(); ?>