PATH:
home
/
letacommog
/
chevaldefeu
/
wp-content
/
plugins
/
cmp-coming-soon-maintenance
/
themes
/
construct
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php $themeslug = 'construct'; //include theme defaults if ( file_exists(dirname(__FILE__).'/'.$themeslug.'-defaults.php') ) { require ( dirname(__FILE__).'/'.$themeslug.'-defaults.php' ); } // render SEO if ( method_exists ( $html, 'cmp_get_seo' ) ) { echo $html->cmp_get_seo(); } // render google fonts link if ( method_exists ( $html, 'cmp_get_fonts' ) ) { echo $html->cmp_get_fonts( $heading_font, $content_font ); } ?> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="<?php echo plugin_dir_url( dirname( __FILE__ ) ) . $themeslug.'/style.css?ver='.CMP_VERSION;?>" type="text/css" media="all"> <style> body,input, select, textarea, button {font-family:'<?php echo esc_attr( $content_font['family'] );?>', 'sans-serif';color:<?php echo esc_attr( $font_color ); ?>;} input {font-family: <?php echo esc_attr( $content_font['family'] );?>, 'fontAwesome';} body {background-color:<?php echo esc_attr( $background_color ); ?>} a {color:<?php echo esc_attr( $font_color ); ?>;} h1,h2,h3,h4,h5,h6 {font-family:'<?php echo esc_attr( $heading_font['family'] );?>', 'sans-serif';} h1,h2,h3,h4,h5,h6,a:hover {color:<?php echo esc_attr( $active_color ); ?>;} input[type="email"]:focus {border:1px solid <?php echo esc_attr( $active_color ); ?>;} input[type="submit"]{background-color: <?php echo esc_attr( $active_color ); ?>;} .social-list a:hover{background:<?php echo esc_attr( $active_color ); ?>;} body {font-size:<?php echo esc_attr( $content_font['size'] );?>px;} .section-body p {line-height: <?php echo esc_attr( $content_font['line-height'] );?>; letter-spacing: <?php echo esc_attr( $content_font['spacing'] );?>px;font-weight:<?php echo esc_attr($content_font_style['0']);?>;<?php echo isset($content_font_style['1']) ? 'font-style: italic;' : '';?>; } .section-social {background-color: <?php echo esc_attr( $social_background_color );?>} h1:not(.text-logo),h2, h3,h4,h5,h6,.text-logo-wrapper {font-size:<?php echo esc_attr( $heading_font['size'] / $content_font['size'] );?>em;letter-spacing: <?php echo esc_attr( $heading_font['spacing'] );?>px; font-weight:<?php echo esc_attr($heading_font_style['0']);?>;<?php echo isset($heading_font_style['1']) ? 'font-style: italic;' : '';?>; } h1 {font-weight:<?php echo esc_attr($heading_font_style['0']);?>;<?php echo isset($heading_font_style['1']) ? 'font-style: italic;' : '';?>;} </style> <?php // render custom CSS if ( method_exists ( $html, 'cmp_get_custom_css' ) ) { echo $html->cmp_get_custom_css(); } // render header javascripts if ( method_exists ( $html, 'cmp_head_scripts' ) ) { $html->cmp_head_scripts(); } // echo pattern copyright if ( $banner_type == 3 ) { echo '<!-- Background pattern from Subtle Patterns --!>'; } ?> </head> <body id="body"> <section class="section section-logo"> <?php // display logo if ( method_exists ( $html, 'cmp_logo' ) ) { echo $html->cmp_logo( $themeslug ); } ?> </section> <section class="section section-banner" id="banner-wrapper"> <?php if ( method_exists ( $html, 'cmp_background' ) ) { echo $html->cmp_background( $banner_type, $themeslug ); } ?> </section> <section class="section section-body"> <?php // display body title if ( method_exists ( $html, 'cmp_get_title' ) ) { echo $html->cmp_get_title( ); } // display body title if ( method_exists ( $html, 'cmp_get_body' ) ) { echo $html->cmp_get_body(); } if ( method_exists ( $html, 'cmp_subscribe_form' ) ) { echo $html->cmp_subscribe_form( ); } ?> </section> <section class="section section-social"> <?php // display social icons if ( method_exists ( $html, 'cmp_social_icons' ) ) { echo $html->cmp_social_icons( $mode = 'icon', $title = true ); } ?> </section> <?php // Display footer if we have copyright set if ( get_option('niteoCS_copyright') !== '' ) { ?> <footer class="section section-footer"> <?php if ( method_exists ( $html, 'cmp_get_copyright' ) ) { echo $html->cmp_get_copyright(); } ?> </footer> <?php } // include paraxify script if banner is image if ( $banner_type != 5 && $banner_type != 4 ) { ?> <script type='text/javascript' src='<?php echo plugin_dir_url( dirname( __FILE__ ) ) . $themeslug .'/paraxify.min.js';?>'></script> <script> // run paraxify myParaxify = paraxify('.image', { speed: 1, boost: 0.5 }); </script> <?php } // render footer javascripts if ( method_exists ( $html, 'cmp_javascripts' ) ) { $html->cmp_javascripts( $banner_type, $themeslug ); } ?> </body> </html>
[+]
..
[-] construct-settings.php
[edit]
[+]
img
[-] paraxify.min.js
[edit]
[-] construct-theme.php
[edit]
[-] construct-defaults.php
[edit]
[-] style.css
[edit]