-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
23 lines (21 loc) · 988 Bytes
/
header.php
File metadata and controls
23 lines (21 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php if(is_front_page()) echo "Accueil"; else wp_title(''); ?> | <?php bloginfo('name'); ?></title>
<!-- Police Lobster -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lobster">
<?php wp_head(); ?>
</head>
<body <?php body_class("site"); ?>>
<header class="site__header">
<a class="site__header__titre" href="<?= esc_url( home_url( '/' ) ); ?>" rel="home">
<h1 class="header__principal"><?= get_bloginfo('name'); ?></h1>
<h6 class="header__secondaire"> <?php echo (get_bloginfo('description', 'display')); ?> </h6>
</a>
</header>
<div class="effet_background"></div>
<!-- Menu avec la liste des cours -->
<?php include('inclusions/menuBarreCours.php');?>