2012-08-30 22:17:00 +02:00
|
|
|
<!DOCTYPE html>
|
2016-04-25 18:39:37 +02:00
|
|
|
<!--[if IE 8]><html <?php language_attributes(); ?> class="ie8"><![endif]-->
|
|
|
|
<!--[if lte IE 9]><html <?php language_attributes(); ?> class="ie9"><![endif]-->
|
2015-10-14 15:59:47 +02:00
|
|
|
<html <?php language_attributes(); ?>>
|
2015-10-14 12:10:55 +02:00
|
|
|
<head>
|
2016-08-09 14:22:26 +02:00
|
|
|
<meta charset="<?php bloginfo('charset'); ?>">
|
2015-10-14 12:10:55 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
|
|
|
<link rel="dns-prefetch" href="//google-analytics.com">
|
2017-11-21 16:39:18 +01:00
|
|
|
<link rel="stylesheet" href="<?php echo get_bloginfo('stylesheet_url') . '?' . filemtime(get_stylesheet_directory() . '/style.css'); ?>">
|
2017-06-06 16:23:36 +02:00
|
|
|
|
2016-02-06 20:22:00 +01:00
|
|
|
<?php wp_head(); ?>
|
2015-10-14 12:10:55 +02:00
|
|
|
<!--[if lt IE 10]>
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script>
|
|
|
|
<![endif]-->
|
|
|
|
<!--[if lt IE 9]>
|
2016-06-24 11:08:13 +02:00
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/livingston-css3-mediaqueries-js/1.0.0/css3-mediaqueries.min.js"></script>
|
2016-06-24 11:03:02 +02:00
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
|
2015-10-14 12:10:55 +02:00
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
|
|
|
|
<![endif]-->
|
|
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
|
|
<header class="header" role="banner">
|
|
|
|
<div class="container">
|
2018-04-17 11:47:53 +02:00
|
|
|
<a href="<?php bloginfo('url'); ?>" class="header__logo">
|
2017-08-25 18:11:48 +02:00
|
|
|
<?php echo is_front_page() ? '<h1>' : ''; ?>
|
|
|
|
<img src="<?php bloginfo('stylesheet_directory'); ?>/img/logo.svg" onerror="this.src='<?php bloginfo('stylesheet_directory'); ?>/img/logo.png'" alt="<?php bloginfo('title'); ?>" />
|
|
|
|
<?php echo is_front_page() ? '</h1>' : ''; ?>
|
|
|
|
</a>
|
|
|
|
<a href="#" class="nav-burger js-menu-toggle">
|
|
|
|
<span class="nav-burger__line"></span>
|
|
|
|
<span class="nav-burger__line"></span>
|
|
|
|
<span class="nav-burger__line"></span>
|
|
|
|
</a>
|
2018-04-17 11:47:53 +02:00
|
|
|
<nav role="navigation" class="header__navigation">
|
|
|
|
<?php wp_nav_menu(['theme_location' => 'header', 'menu_class' => 'nav nav--header']); ?>
|
2015-10-14 12:10:55 +02:00
|
|
|
</nav>
|
|
|
|
</div>
|
2015-12-10 15:48:46 +01:00
|
|
|
</header>
|