Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
onepress.2.3.5
/
onepress
/
//home/puskom/mastur/onepress.2.3.5/onepress/template-frontpage.php
<?php /** *Template Name: Frontpage * * @package OnePress */ get_header(); ?> <div id="content" class="site-content"> <main id="main" class="site-main" role="main"> <?php do_action( 'onepress_frontpage_before_section_parts' ); if ( ! has_action( 'onepress_frontpage_section_parts' ) ) { $sections = apply_filters( 'onepress_frontpage_sections_order', array( 'features', 'about', 'services', 'videolightbox', 'gallery', 'counter', 'team', 'news', 'contact' ) ); foreach ( $sections as $section ){ /** * Load section if active * * @since 2.1.1 */ if ( Onepress_Config::is_section_active( $section ) ) { onepress_load_section( $section ); } } } else { do_action( 'onepress_frontpage_section_parts' ); } do_action( 'onepress_frontpage_after_section_parts' ); ?> </main> </div> <?php get_footer(); ?>