mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-02 02:34:19 +00:00

* Test adding meta tags modified: config/sphinx-build/_static/_templates/theme/layout.html new file: config/sphinx-build/_static/toolkit.png * Test adding meta tags
32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
{# Import the theme's layout. #}
|
|
{% extends "!layout.html" %}
|
|
|
|
{# Adds Google Analytics events on button click. #}
|
|
{%- block analytics %}
|
|
<!-- Google Tag Manager -->
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
})(window,document,'script','dataLayer','GTM-WBVF48V');</script>
|
|
<!-- End Google Tag Manager --><!-- Google Tag Manager (noscript) -->
|
|
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WBVF48V"
|
|
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
<!-- End Google Tag Manager (noscript) -->
|
|
{{ super() }}
|
|
{%- endblock %}
|
|
|
|
{%- block extrahead %}
|
|
{{ super() }}
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="Percona Toolkit Documentation" />
|
|
<meta property="og:description" content="Command-line tools for common MySQL database administration tasks." />
|
|
<meta property="og:url" content="https://docs.percona.com/percona-toolkit/" />
|
|
{% endblock %}
|
|
|
|
{%- block relbar2 %}
|
|
{% include "relbar2.html" %}
|
|
{%- endblock %}
|
|
|
|
|