Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion djangoproject/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@
<link rel="stylesheet" href="{% static "css/output.css" %}" >

<script src="{% static "js/mod/switch-dark-mode.js" %}"></script>
{% block head_extra %}{% endblock head_extra %}
{% block head_extra %}
{% if not is_translated %}
<meta name="robots" content="noindex">
{% endif %}
{% endblock head_extra %}

</head>

<body id="{% block sectionid %}generic{% endblock %}" class="{% block body_class %}{% endblock %}">
Expand Down