23 lines
1.1 KiB
PHP
23 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo('charset'); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
<body <?php body_class(); ?>>
|
|
<header class="container">
|
|
<div class="site-branding">
|
|
<h1 class="site-title">
|
|
<a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a>
|
|
<?php if (get_theme_mod('portfolio_photo_show_slogan', true)) : ?>
|
|
<span class="site-slogan"><?php echo esc_html(get_theme_mod('portfolio_photo_slogan', 'Photographier l\'humain, révéler l\'essentiel.')); ?></span>
|
|
<?php endif; ?>
|
|
</h1>
|
|
</div>
|
|
<nav class="main-navigation">
|
|
<?php wp_nav_menu(array('theme_location' => 'primary')); ?>
|
|
</nav>
|
|
</header>
|