single-news.php
1.5 KB
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
42
43
44
45
<?php get_header();?>
<?php $get_lang = isset($wp_query->query_vars['prisna_translate_seo_request'])?urldecode($wp_query->query_vars['prisna_translate_seo_request']):''; ?>
<header class="page_head_layer" style="background-image: url(template/img/demo/main_banner.jpg)">
<div class="layout">
<div class="detail_item">
<div class="item_cont">
<h3 class="item_tit">HF DESIGN COLLECTION</h3>
<p class="item_desc">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a</p>
</div>
<div class="learn_more">
<a href="" class="sys_btn">Learn More</a>
</div>
</div>
</div>
</header>
<div class="path_bar">
<div class="layout">
<ul>
<li><?php if(function_exists('cmp_breadcrumbs')) cmp_breadcrumbs();?></li>
</ul>
</div>
</div>
<section class="web_main page_main">
<div class="layout">
<?php get_sidebar();?>
<section class="main">
<h2 class="page_title">
<?php wp_title(); ?>
</h2>
<article class="entry blog-article">
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<div class="clear"></div>
<hr>
Post time:
<?php the_time('M-d-Y') ?>
<div class="addthis_sharing_toolbox"></div>
<div class="clear"></div>
</article>
</section>
</div>
</section>
<?php get_footer();?>