-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontent-page.php
More file actions
31 lines (16 loc) · 791 Bytes
/
content-page.php
File metadata and controls
31 lines (16 loc) · 791 Bytes
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
<?php $sidebar = get_option('galopin_show_sidebar'); ?>
<?php do_action('galopin_before_post'); ?>
<article <?php post_class('post'); ?> itemscope itemtype="http://schema.org/CreativeWork">
<?php do_action('galopin_top_post'); ?>
<header class="entry-header post-header">
<?php do_action('galopin_top_header_post'); ?>
<h1 class="entry-title post-header-title" itemprop="headline">
<?php the_title(); ?>
</h1><!--END .entry-title-->
<?php do_action('galopin_bottom_header_post'); ?>
</header><!--END .entry-header-->
<?php get_template_part('content', 'body'); ?>
<?php get_template_part('content', 'footer-meta'); ?>
<?php do_action('galopin_bottom_post'); ?>
</article><!--END .post-->
<?php do_action('galopin_after_post'); ?>