mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
17 lines
302 B
PHP
17 lines
302 B
PHP
<?php
|
|
global $SMTheme;
|
|
get_header();
|
|
|
|
get_template_part('theloop');
|
|
|
|
the_tags("<div class='tags'><span>".$SMTheme->_( 'tags' ).": </span>", ", ","</div>");
|
|
|
|
get_template_part('relatedposts');
|
|
|
|
comments_template();
|
|
|
|
get_template_part('navigation');
|
|
|
|
|
|
get_footer();
|
|
?>
|