Files
infrait/templates/base.html
2026-02-12 16:00:15 +00:00

38 lines
2.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ settings.company_name }} — IT-аутсорсинг для бизнеса{% endblock %}</title>
<meta name="description" content="InfraIT: комплексное IT-обслуживание бизнеса в Татарстане и Казани с выездом в день запроса. По России — удаленная поддержка. Фиксированная стоимость, быстрое реагирование, поддержка серверов и сетей.">
<meta name="keywords" content="IT аутсорсинг Казань, IT обслуживание Татарстан, обслуживание компьютеров организаций, поддержка серверов, администрирование сетей, IT поддержка бизнеса">
<link rel="canonical" href="{{ settings.site_url }}">
<meta property="og:title" content="InfraIT — комплексное IT-обслуживание бизнеса">
<meta property="og:description" content="Компьютеры, серверы и сети для бизнеса без простоев. Татарстан и Казань с выездом, Россия удаленно.">
<meta property="og:type" content="website">
<meta property="og:locale" content="ru_RU">
<meta name="yandex-verification" content="{{ settings.yandex_verification }}">
{% if settings.yandex_metrika_id %}
<script>
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();
for (var j = 0; j < document.scripts.length; j++) { if (document.scripts[j].src === r) { return; }}
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym({{ settings.yandex_metrika_id }}, "init", { clickmap:true, trackLinks:true, accurateTrackBounce:true, webvisor:true });
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/{{ settings.yandex_metrika_id }}" style="position:absolute; left:-9999px;" alt=""></div></noscript>
{% endif %}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
{% block head_extra %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
{% block scripts %}{% endblock %}
</body>
</html>