mirror of
https://github.com/elyby/docs.git
synced 2024-11-26 16:52:04 +05:30
5cebcf8abe
- removed all translations and used Russian as the base language - integrated crowdin - new multilang site layout - upgraded sphinx - fixed search, now it correctly handles articles language
20 lines
448 B
HTML
20 lines
448 B
HTML
{# layout.html #}
|
|
{# Import the theme's layout. #}
|
|
{% extends "!layout.html" %}
|
|
|
|
{% set css_files = css_files + ['_static/style.css'] %}
|
|
|
|
{% block footer %}
|
|
{{ super() }}
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-45299905-2"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-45299905-2');
|
|
</script>
|
|
|
|
{% endblock %}
|