-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-clear.php
executable file
·27 lines (17 loc) · 1 KB
/
page-clear.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
<?php /* Template Name: برگه بدون مشخصات */ ?>
<?php get_header(); ?>
<!-- Left Sec -->
<section id="left-sec" class="col-md-9 col-sm-8">
<?php if( have_posts() ) : the_post(); ?>
<article class="master-post" id="post-<?php the_ID(); ?>">
<header class="post-header">
<i class="fa fa-file-text-o fa-lg"></i>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="post-body clearfix"><?php the_content(); ?></div>
</article>
<?php endif; wp_reset_postdata(); ?>
<?php comments_template(); ?>
</section>
<!-- /Left Sec -->
<?php get_footer(); ?>