41 lines
974 B
PHP
41 lines
974 B
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('bg-white text-gray-900 antialiased'); ?>>
|
|
|
|
<?php
|
|
do_action('tailpress_site_before');
|
|
global $post;
|
|
?>
|
|
|
|
<div id="page-<?php echo $post->post_name ?>" class="min-h-screen flex flex-col">
|
|
|
|
<?php do_action('tailpress_header'); ?>
|
|
|
|
<header id="main-header">
|
|
<!-- MENU HOMEGRADE -->
|
|
<?php get_template_part('template-components/header/menu-homegrade'); ?>
|
|
|
|
<!-- MENU RENOVATEUR -->
|
|
<?php get_template_part('template-components/header/menu-renovateur'); ?>
|
|
|
|
|
|
|
|
</header>
|
|
|
|
|
|
<?php if (is_front_page()) { ?>
|
|
|
|
<?php } ?>
|
|
|
|
<?php do_action('tailpress_content_start'); ?>
|
|
|
|
<main id="content" class="site-content flex-grow">
|