first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php
/**
* The template part for selected header
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<header class="page_header header_white toggler_right">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="display_table_md">
<div class="display_table_cell_md">
<div class="header_left_logo">
<?php
get_template_part( 'template-parts/header/header-logo-light' );
?>
</div><!-- eof .header_left_logo -->
</div>
<div class="display_table_cell_md">
<nav class="mainmenu_wrapper primary-navigation text-md-right">
<?php wp_nav_menu( array (
'theme_location' => 'primary',
'menu_class' => 'sf-menu nav-menu nav',
'container' => 'ul'
) ); ?>
</nav>
<span class="toggle_menu"><span></span></span>
</div>
</div>
</div><!-- eof .col-sm-* -->
</div><!-- eof .row-->
</div> <!-- eof .container-->
</header><!-- eof .page_header -->