Skip to content

Commit b280998

Browse files
committed
Added a verification page for Google's Webmasters' Tools (https://www.google.com/webmasters/tools/siteoverview)
- Legacy-Id: 805
1 parent c071818 commit b280998

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2+
{% extends "base.html" %}
3+
{% load versiontags %}
4+
5+
{% block content %}
6+
7+
<h3>This is a verification page for the <a href="https://www.google.com/webmasters/tools/siteoverview">Google Webmaster Tools</a>.</h3>
8+
9+
{% endblock %}
10+
11+
{% block footer %}
12+
<hr/>
13+
<div style="width: 100%; height: 1em; font-size: 9pt; font-style: italic;">
14+
<span style="float: left;">Made with <a href="http://www.djangoproject.com/">django</a></span>
15+
<span style="float: right;">v{% version_num %}, {% revision_date %} - <a href="mailto:webtools@ietf.org">webtools@ietf.org</a></span>
16+
</div>
17+
{% endblock %}

ietf/urls.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
(r'^review/(?P<page>[0-9a-f]+)/$', 'ietf.utils.views.review'),
4343
(r'^review/top/(?P<page>[0-9a-f]+)/$', 'ietf.utils.views.top'),
4444

45+
# Google webmaster tools verification url
46+
(r'googlea30ad1dacffb5e5b.html', 'django.views.generic.simple.direct_to_template', { 'template': 'googlea30ad1dacffb5e5b.html' })
47+
4548
)
4649

4750
if settings.SERVER_MODE in ('development', 'test'):

0 commit comments

Comments
 (0)