24 lines
943 B
PHP
24 lines
943 B
PHP
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<title><?php bloginfo ('name');?></title>
|
|
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="HandheldFriendly" content="true">
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
<body <?php body_class(); ?>>
|
|
<header class="main">
|
|
<div class="container">
|
|
<div class="logo">
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php bloginfo('template_url') ?>/images/crille_logo.png" alt="Logo"></a>
|
|
</div>
|
|
<nav>
|
|
<?php wp_nav_menu (); ?>
|
|
</nav>
|
|
</div>
|
|
</header>
|