-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
39 lines (37 loc) · 1.67 KB
/
single.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
<?php get_header(); ?>
<div class="container mt-3">
<div class="row">
<section class="main col-12 col-sm-12 col-md-12">
<div class="row singlePosts">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<article class="col-12 col-sm-8 articulos">
<div class="contenedor">
<div class="imagen">
<?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'homepage-thumb' ); } ?>
</div>
<div class="info">
<h2 class="titulo"><?php the_title();?></h2>
<p class="fecha"><?php echo get_the_date();?></p>
<div class="texto"><?php the_content(); ?></div>
<!-- <p class="extracto"><?php the_content(); ?></p> -->
</div>
</div>
</article>
<section class="comentarios col-sm-8">
<?php comments_template();?>
</section>
<?php endwhile; else : ?>
<article class="col-12 col-sm-12 articulos">
<div class="contenedor">
<div class="info">
<h2 class="titulo">The post you are looking for does not exist</h2>
<div class="extracto"><p>Make sure the url you entered is correct.</p></div>
</div>
</div>
</article>
<?php endif ;?>
</div>
</section>
</div>
</div>
<?php get_footer(); ?>