-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
28 lines (24 loc) · 1.14 KB
/
single.php
File metadata and controls
28 lines (24 loc) · 1.14 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
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="fh5co-wireframe">
<div class="container">
<div class="row animate-box">
<div class="col-md-8 col-md-offset-2 text-center fh5co-heading">
<h2><?php the_title(); ?></h2>
<div class="blog-text">
<span class="posted_on"><?php the_time(get_option('date_format')); ?></span>
<span class="posted_on"><?php _e('Autor: ', 'air'); the_author_posts_link(); ?></span>
<span class="posted_on"><?php the_tags(); ?></span>
<span class="posted_on"><?php _e('Categorías: ', 'air'); the_category(','); ?></span>
</div>
</div>
</div>
<div class="row">
<div class="col-md- animate-box">
<p><?php the_content(); ?> </p>
</div>
</div>
</div>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>