diff options
Diffstat (limited to 'content-single.php')
-rw-r--r-- | content-single.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/content-single.php b/content-single.php index 39f2609..e59a287 100644 --- a/content-single.php +++ b/content-single.php @@ -1,7 +1,6 @@ <?php printf (' - <section class="main col-md-8"> - <h6 class="page-libre">no_title</h6> + <div class="main col-md-8"> <div class="row single-post"> '); //Lógica de the_loop @@ -15,12 +14,12 @@ printf (' the_post(); //echo ''; $template_html = ' - <article class="col-sm-12 post"> + <div class="col-sm-12 post"> <div class="contenedor"> <div class="thumb"> <figure>%s</figure> </div> - <div class="info"> + <article class="info"> <h2 class="titulo">%s</h2> <p class="fecha">%s ' . __('by', 'Lidra') . ' %s <a href="%s" target="_blank">%s</a></p> <div class="categorias"> @@ -44,9 +43,9 @@ printf (' the_content(); printf(' </div> </div> - </div> + </article> </div> - </article>' + </div>' ); comments_template(); endwhile; @@ -55,4 +54,4 @@ printf (' endif; rewind_posts(); printf(' </div> - </section>'); + </div>'); |