-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
60 lines (35 loc) · 1.35 KB
/
Copy pathhome.php
File metadata and controls
60 lines (35 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/*
Template Name: Home
*/
?>
<?php get_header(); ?>
<div id="mainwrap" class="homewrap">
<div id="main" class="clearfix">
<?php if(isset($pmc_data['infotext_status'])) { ?>
<div class="infotextwrap">
<div class="infotext">
<div class="infotextBorder"></div>
<h2><?php if (!function_exists('icl_object_id') or (ICL_LANGUAGE_CODE == $sitepress->get_default_language()) ) { echo stripText($pmc_data['infotext']); } else { _e('Welcome to <span>studio</span> - A Minimal Business Theme','wp-studio'); } ?></h2>
<?php if(isset($pmc_data['quote_bottom_border'])) { ?>
<div class="infotextBorder"></div>
<?php }?>
</div>
</div>
<?php }?>
<div class="clear"></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="usercontent homeuser"><?php the_content(''); ?></div>
<?php endwhile; endif; ?>
<div class="clear"></div>
<?php if(isset($pmc_data['racent_status_port'])) { ?>
<?php include(BOX_PATH . 'homeRecentPort.php'); ?>
<?php }?>
<div class="clear"> </div>
<?php if(isset($pmc_data['box_status'])) { ?>
<?php include(BOX_PATH . 'homebox.php'); ?>
<?php }?>
<div class="clear"> </div>
</div>
</div>
<?php get_footer(); ?>