-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpage.php
33 lines (33 loc) · 1.15 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
<?php get_header(); ?>
<?php if (have_posts()) :?>
<?php while (have_posts()) : the_post();?>
<?php if ( has_post_thumbnail() ) :?>
<style>
.nav-bar{ display:none;}
</style>
<header class="site-header" style=" height:30%;">
<div class="site-header-inner" style="animation: bgcolor 5s;-moz-animation: bgcolor 5s;-webkit-animation: bgcolor 5s; -o-animation: bgcolor 5s;background-color: rgba(0,0,0,0.3);">
<h1 style=" color:#fff;" class="animated fadeInDown"><?php the_title();?></h1>
</div>
</header>
<?php endif;?>
<div class="main">
<div class="content-widescreen">
<section class="posts">
<div class="crumbs_patch">
<?php if(function_exists('cmp_breadcrumbs')) cmp_breadcrumbs();?></div>
<div class="posts-inner">
<article class="post text">
<?php if(!has_post_thumbnail()):?><h1 itemprop="name"><?php the_title();?></h1>
<?php endif;?>
<?php the_content();?>
</article>
</div>
<div class="post-comment">
<?php comments_template();?>
</div>
</section>
</div>
</div>
<?php endwhile; endif;?>
<?php get_footer();?>