129 lines
3.4 KiB
PHP
129 lines
3.4 KiB
PHP
<!DOCTYPE html>
|
||
<html <?php language_attributes(); ?>>
|
||
|
||
<head>
|
||
<meta charset="<?php bloginfo('charset'); ?>">
|
||
<meta name="viewport" content="width=device-width">
|
||
<link rel="profile" href="http://gmpg.org/xfn/11">
|
||
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
|
||
|
||
<?php wp_head(); ?>
|
||
</head>
|
||
|
||
<body <?php body_class("front-end"); ?>>
|
||
<?php
|
||
do_action('tailpress_site_before');
|
||
global $post;
|
||
?>
|
||
|
||
<?php
|
||
$page_id = 'home';
|
||
if (is_archive()) {
|
||
$page_id = 'archive-' . get_post_type();
|
||
} elseif (is_single()) {
|
||
$page_id = $post->post_name;
|
||
} elseif (is_page()) {
|
||
$page_id = $post->post_name;
|
||
}
|
||
?>
|
||
<div id="page-<?php echo $page_id; ?>" class="min-h-screen flex flex-col">
|
||
|
||
<?php do_action('tailpress_header'); ?>
|
||
|
||
<header id="primary-header">
|
||
<div class="secondary-menu-container">
|
||
<div class="secondary-menu-nav">
|
||
<?php
|
||
wp_nav_menu(
|
||
array(
|
||
'container' => 'false',
|
||
'theme_location' => 'secondary',
|
||
'li_class' => 'menu-navlink',
|
||
'fallback_cb' => false,
|
||
)
|
||
); ?>
|
||
<div class="network-redirector">
|
||
<a href="<?php echo get_site_url(1); ?>">
|
||
CARHOP
|
||
</a>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="primary-menu-container lg:flex lg:justify-between lg:items-center">
|
||
<nav id="primary-menu-nav" class="flex justify-between items-center">
|
||
<div class="website_logo">
|
||
<?php if (has_custom_logo()) { ?>
|
||
<?php the_custom_logo(); ?>
|
||
<?php } else { ?>
|
||
<a href=" <?php echo get_bloginfo('url'); ?>" class="font-extrabold text-lg uppercase">
|
||
<?php echo get_bloginfo('name'); ?>
|
||
</a>
|
||
|
||
<p class="text-sm font-light text-gray-600">
|
||
<?php echo get_bloginfo('description'); ?>
|
||
</p>
|
||
|
||
<?php } ?>
|
||
</div>
|
||
|
||
<button id="burger-menu-toggle" aria-label="<?php echo esc_html_e("Ouvrir le menu", 'deligraph-theme') ?>">
|
||
<div class="menu-toggle-bar menu-toggle-bar--top"></div>
|
||
<div class="menu-toggle-bar menu-toggle-bar--middle"></div>
|
||
<div class="menu-toggle-bar menu-toggle-bar--bottom"></div>
|
||
<!-- <?php echo get_template_part('resources/svg/burger-menu-icon.svg'); ?> -->
|
||
</button>
|
||
<div id="primary-menu">
|
||
<!-- <button id="close-menu-btn" aria-label="<?php echo esc_html_e("Fermer le menu", 'deligraph-theme') ?>">
|
||
<?php echo get_template_part('resources/svg/close-menu-icon.svg'); ?>
|
||
</button> -->
|
||
<?php
|
||
wp_nav_menu(
|
||
array(
|
||
'container' => 'false',
|
||
// 'container_id' => 'primary-menu',
|
||
// 'container_class' => '',
|
||
'theme_location' => 'primary',
|
||
'li_class' => 'menu-navlink',
|
||
'fallback_cb' => false,
|
||
)
|
||
); ?>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="tools-container">
|
||
<button class="search-button">
|
||
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-rechercher.svg" alt="">
|
||
Rechercher
|
||
</button>
|
||
<button class="subscribe-button">
|
||
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-abonner.svg" alt="">
|
||
S’abonner
|
||
</button>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
</nav>
|
||
|
||
|
||
|
||
|
||
|
||
</div>
|
||
<?php get_template_part('template-parts/search-module'); ?>
|
||
|
||
</header>
|
||
|
||
|
||
|
||
<?php if (is_front_page()) { ?>
|
||
|
||
<?php } ?>
|
||
|
||
<?php do_action('tailpress_content_start'); ?>
|
||
|
||
|
||
<main id="content" class="site-content flex-grow">
|