-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
41 lines (33 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
41
<?php /**
* The template for displaying default page tamplate
*
* @package Roohani
* @since roohani 1.0
*/
?>
<?php get_header();?>
<div class="jumbotron text-center">
<h2><?php the_title_attribute();?></h2>
</div>
<div class="container">
<main id="main" class="site-main">
<div class="row">
<div class="content col-md-12">
<?php if( have_posts() ) : while ( have_posts() ) : the_post();?>
<article id="<?php the_ID(); ?>" <?php post_class(); ?> >
<?php the_content(); ?>
</article>
<?php // End while.
endwhile; else :
get_template_part( 'templates/content', '404' );
endif;
?>
</div>
</div>
</main>
</div>
<!--<h3 class="text-center">It is page.php</h3> -->
<!-- Call to action start -->
<?php get_template_part( '/templates/call-action');?>
<!-- Call to action End-->
<?php get_footer(); ?>