templates/site/header.html.twig line 1
<!DOCTYPE html>
<html class="no-js page" lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link rel="shortcut icon" href="/assets/img/fav.png" type="image/x-icon">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff"><!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries--><!-- WARNING: Respond.js doesn't work if you view the page via file://--><!--[if lt IE 9]><script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script><script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
<title>{% trans %}sitetitle{% endtrans %}</title>
<meta name="description" content="">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/[email protected]/dist/jquery.fancybox.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/css/swiper.min.css">
<link rel="stylesheet" href="/assets/css/main.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="header-content"><a class="logo" href="/"><img class="lozad" data-src="/assets/img/logo.svg" /></a>
<nav class="navigation">
{% if menuList is defined %}
<ul>
{% for menuItem in menuList %}
<li><a href="/{{app.request.locale}}{{ menuItem.url }}">{{ menuItem.item }}</a></li>
{% endfor %}
{% endif %}
</ul>
</nav>
<div class="user-nav">
{% if userInfo is defined %}
<a class="enter-link " href="/user/profile"> {{ userInfo.login }}</a>
{% else %}
<a class="enter-link modal_open" href="#enter"> Вход </a><a class="enter-btn modal_open" href="#signup"> <span>Регистрация</span></a>
{% endif %}
<div class="tog-nav"> </div>
</div>
</div>
</div>
</header>