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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?php /* Template name: Blank landingpage */ ?> <?php global $woo_options; global $woocommerce; global $flatsome_opt; ?> <!DOCTYPE html> <!--[if lte IE 9 ]><html class="ie lt-ie9" <?php language_attributes(); ?>> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--><html <?php language_attributes(); ?>> <!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!-- Custom favicon--> <link rel="shortcut icon" href="<?php if ($flatsome_opt['site_favicon']) { echo $flatsome_opt['site_favicon']; ?> <?php } else { ?><?php echo get_template_directory_uri(); ?>/favicon.png<?php } ?>" />
<!-- Retina/iOS favicon --> <link rel="apple-touch-icon-precomposed" href="<?php if ($flatsome_opt['site_favicon_large']) { echo $flatsome_opt['site_favicon_large']; ?> <?php } else { ?><?php echo get_template_directory_uri(); ?>/apple-touch-icon-precomposed.png<?php } ?>" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?>>
<div id="wrapper"> <div id="main-content" class="site-main">
<!-- woocommerce message --> <?php if(function_exists('wc_print_notices')) {wc_print_notices();}?>
<?php if( has_excerpt() ) { ?> <div class="page-header"> <?php the_excerpt(); ?> </div> <?php } ?> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?> </div> </div><!-- #main-content -->
<footer class="footer-wrapper" role="contentinfo"> <div class="absolute-footer <?php echo $flatsome_opt['footer_bottom_style']; ?>" style="background-color:<?php echo $flatsome_opt['footer_bottom_color']; ?>"> <div class="row"> <div class="large-12 columns"> <div class="left"> <?php if ( has_nav_menu( 'footer' ) ) : ?> <?php wp_nav_menu(array( 'theme_location' => 'footer', 'menu_class' => 'footer-nav', 'depth' => 1, 'fallback_cb' => false, )); ?> <?php endif; ?> <div class="copyright-footer"><?php if(isset($flatsome_opt['footer_left_text'])) {echo $flatsome_opt['footer_left_text'];} else{ echo 'Define left footer text / navigation in Theme Option Panel';} ?></div> </div><!-- .left --> <div class="right"> <?php if(isset($flatsome_opt['footer_right_text'])){ echo do_shortcode($flatsome_opt['footer_right_text']);} else {echo 'Define right footer text in Theme Option Panel';} ?> </div> </div><!-- .large-12 --> </div><!-- .row--> </div><!-- .absolute-footer --> </footer><!-- .footer-wrapper --> </div><!-- #wrapper -->
<!-- back to top --> <a href="#top" id="top-link"><span class="icon-angle-up"></span></a> <?php if(isset($flatsome_opt['html_scripts_footer'])){ // Insert footer scripts echo $flatsome_opt['html_scripts_footer']; } ?> <?php wp_footer(); ?> </body> </html>
|