<?php
/**
* The Header for our theme.
*
* @package OceanWP WordPress theme
*/
?>
<!DOCTYPE html>
<html class="<?php echo esc_attr( oceanwp_html_classes() ); ?>" <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> <?php oceanwp_schema_markup( 'html' ); ?>>
<?php wp_body_open(); ?>
<?php do_action( 'ocean_before_outer_wrap' ); ?>
<div id="outer-wrap" class="site clr">
<a class="skip-link screen-reader-text" href="#main"><?php echo esc_html( oceanwp_theme_strings( 'owp-string-header-skip-link', false ) ); ?></a>
<?php do_action( 'ocean_before_wrap' ); ?>
<div id="wrap" class="clr">
<?php do_action( 'ocean_top_bar' ); ?>
<?php do_action( 'ocean_header' ); ?>
<?php do_action( 'ocean_before_main' ); ?>
<main id="main" class="site-main clr"<?php oceanwp_schema_markup( 'main' ); ?> role="main">
<?php do_action( 'ocean_page_header' ); ?>
Zámostní 1155/27
710 00 Ostrava
Česká Republika
+420 724 922 208
w języku polskim i czeskim
Prosimy o wypełnienie poniższego formularza określając jakimi usługami są Państwo zainteresowani.
Pozostawienie telefonu kontaktowego przyspieszy wycenę i pozwoli nam na szybkie wyjaśnienie wątpliwości, które mogą pojawić się na etapie zapytania.
<?php
/**
* The template for displaying the footer.
*
* @package OceanWP WordPress theme
*/
?>
</main><!-- #main -->
<?php do_action( 'ocean_after_main' ); ?>
<?php do_action( 'ocean_before_footer' ); ?>
<?php
// Elementor `footer` location.
if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'footer' ) ) {
?>
<?php do_action( 'ocean_footer' ); ?>
<?php } ?>
<?php do_action( 'ocean_after_footer' ); ?>
</div><!-- #wrap -->
<?php do_action( 'ocean_after_wrap' ); ?>
</div><!-- #outer-wrap -->
<?php do_action( 'ocean_after_outer_wrap' ); ?>
<?php
// If is not sticky footer.
if ( ! class_exists( 'Ocean_Sticky_Footer' ) ) {
get_template_part( 'partials/scroll-top' );
}
?>
<?php
// Search overlay style.
if ( 'overlay' === oceanwp_menu_search_style() ) {
get_template_part( 'partials/header/search-overlay' );
}
?>
<?php
// If sidebar mobile menu style.
if ( 'sidebar' === oceanwp_mobile_menu_style() ) {
// Mobile panel close button.
if ( get_theme_mod( 'ocean_mobile_menu_close_btn', true ) ) {
get_template_part( 'partials/mobile/mobile-sidr-close' );
}
?>
<?php
// Mobile Menu (if defined).
get_template_part( 'partials/mobile/mobile-nav' );
?>
<?php
// Mobile search form.
if ( get_theme_mod( 'ocean_mobile_menu_search', true ) ) {
ob_start();
get_template_part( 'partials/mobile/mobile-search' );
echo ob_get_clean();
}
}
?>
<?php
// If full screen mobile menu style.
if ( 'fullscreen' === oceanwp_mobile_menu_style() ) {
get_template_part( 'partials/mobile/mobile-fullscreen' );
}
?>
<?php wp_footer(); ?>
</body>
</html>