-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
27 lines (26 loc) · 1.11 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta http-equiv="cache-control" content="no-cache"/>
<title><?php bloginfo('name');?> - <?php bloginfo('description');?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri();?>/css/site.css"/> <!--ceci est la page pour lier le css, ne pas enlever-->
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body>
<header>
<div>
<h1>Agence Matrice Carrée : <?php bloginfo( 'name' ); ?></h1>
<h2> Matrice Carrée, c'est carré. : <?php bloginfo( 'description' ); ?></h2>
<nav id="menuprincipal">
<?php wp_page_menu('show_home=1'); ?>
</nav>
<div>
<hr class="separation" />
</div>
</div>
</header>
</html>