-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-actual-fullwidth.php
52 lines (48 loc) · 1.41 KB
/
template-actual-fullwidth.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
42
43
44
45
46
47
48
49
50
51
52
<?php
/*
Template Name: Actual Full Width Template
*/
?>
<?php get_header(); ?>
<?php global $advertica_shortname; ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class="bread-title-holder">
<div class="bread-title-bg-image full-bg-breadimage-fixed"></div>
<div class="container">
<div class="row-fluid">
<div class="container_inner clearfix">
<h1 class="title"><?php the_title(); ?></h1>
<?php if(sketch_get_option($advertica_shortname."_hide_bread") == 'true') {
if ((class_exists('advertica_breadcrumb_class'))) {$advertica_breadcumb->custom_breadcrumb();}
}
?>
</div>
</div>
</div>
</div>
<div class="page-content fullwidth-temp">
<div class="container-flex post-wrap">
<div class="row-fluid">
<div id="content" class="span12">
<div class="post" id="post-<?php the_ID(); ?>">
<div class="skepost">
<?php the_content(); ?>
<?php wp_link_pages(__('<p><strong>Pages:</strong> ','advertica-lite'), '</p>', __('number','advertica-lite')); ?>
<?php edit_post_link('Edit', '', ''); ?>
</div>
<!-- skepost -->
</div>
<!-- post -->
<?php endwhile; ?>
<?php else : ?>
<div class="post">
<h2><?php _e('Not Found','advertica-lite'); ?></h2>
</div>
<?php endif; ?>
</div>
<!-- content -->
</div>
</div>
</div>
<?php get_footer(); ?>