2021-04-27 22:21:26 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying the header
|
|
|
|
*
|
|
|
|
* Displays all of the head element and everything up until the "container" div.
|
|
|
|
*
|
2021-04-28 01:20:47 +02:00
|
|
|
* @package arcHIVE-theme
|
|
|
|
* @since arcHIVE-theme 1.0.0
|
2021-04-27 22:21:26 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
<!doctype html>
|
|
|
|
<html class="no-js" <?php language_attributes(); ?> >
|
|
|
|
<head>
|
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<?php wp_head(); ?>
|
|
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
|
|
|
2021-04-29 00:56:02 +02:00
|
|
|
<header class="" role="banner">
|
|
|
|
<main class="">
|
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" class="site-brand archive">
|
|
|
|
<h1 class="site-name">
|
|
|
|
<?php bloginfo( 'name' ); ?>
|
|
|
|
</h1>
|
|
|
|
<h2 class="site-description">
|
|
|
|
<?php bloginfo( 'description' ); ?>
|
|
|
|
</h2>
|
|
|
|
</a>
|
|
|
|
</main>
|
|
|
|
<nav>
|
|
|
|
<menu class="">
|
2021-04-27 22:21:26 +02:00
|
|
|
<?php foundationpress_top_bar_r(); ?>
|
2021-04-29 00:56:02 +02:00
|
|
|
</menu>
|
|
|
|
</nav>
|
2021-04-27 22:21:26 +02:00
|
|
|
|
|
|
|
</header>
|