You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
{% load cms_tags staticfiles sekizai_tags menu_tags i18n %}
|
|
{% load pipeline %}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block title %}Zuykov and partners{% endblock title %}</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
{% stylesheet 'main' %}
|
|
{% javascript 'vendor' %}
|
|
{% javascript 'main' %}
|
|
|
|
{% render_block "css" %}
|
|
</head>
|
|
<body>
|
|
{% cms_toolbar %}
|
|
<div class="container">
|
|
<div class="wrapper">
|
|
<div class="header-logo">
|
|
<a href="/">
|
|
<img src="
|
|
{% with 'imgs/logo_'|add:request.LANGUAGE_CODE|add:'.svg' as image_static %}
|
|
{% static image_static %}
|
|
{% endwith %}
|
|
">
|
|
</a>
|
|
</div>
|
|
<div class="header-contacts">
|
|
{% language_chooser 'language_chooser.html' %}
|
|
<a href="{% page_url "about" %}">{% page_attribute "page_title" "about" %}</a>
|
|
</div>
|
|
</div>
|
|
<ul class="list-unstyled menu">
|
|
{% show_menu 0 1 100 100 "menu.html" %}
|
|
</ul>
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
{% render_block "js" %}
|
|
</body>
|
|
</html>
|
|
|