mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
f10680dd75
* add buy-sell-ads advert to docs * hide ad box on mobile
10 lines
181 B
HTML
10 lines
181 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{# no ad on the home page #}
|
|
{% if not page.is_index %}
|
|
<div id="bsa-cpc"></div>
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}
|