-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
33 lines (28 loc) · 801 Bytes
/
page.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
<?php if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die('Por favor no cargue esta página directamente. ¡Gracias!'); } ?>
<?php get_header(); ?>
<!-- Inicia página
================================================== -->
<div class="container">
<div class="row">
<?php gallo_share(); ?>
<!-- Inicio Post -->
<div class="col-md-8 col-md-offset-2 col-xs-12">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="mainheading">
<h1 class="posttitle"><?php the_title(); ?></h1>
</div>
<div class="article-post">
<?php the_content(); ?>
</div>
<?php endwhile;
endif;
?>
</div>
<!-- Fin Post -->
</div>
</div>
<!-- Termina página
================================================== -->
<div class="hideshare"></div>
<?php get_footer(); ?>