mirror of
https://github.com/MidnightCommander/website.git
synced 2026-02-02 11:13:47 -08:00
21 lines
522 B
HTML
21 lines
522 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{{ super() }}
|
|
|
|
{% if page.abs_url == "/" and not "127.0.0.1" in config.site_url %}
|
|
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
<ins class="adsbygoogle"
|
|
style="display:block"
|
|
data-ad-client="ca-pub-1116512972967230"
|
|
data-ad-slot="3684429103"
|
|
data-ad-format="auto"
|
|
data-full-width-responsive="true"></ins>
|
|
<script>
|
|
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|