forked from I2P_Developers/i2p.www
Set up the Google Webmaster Tools verification page
This commit is contained in:
@ -72,5 +72,7 @@ url('/hosts.txt', 'views.hosts')
|
||||
url('/robots.txt', 'views.robots')
|
||||
url('/favicon.ico', 'views.favicon')
|
||||
|
||||
url('/googleadcf8b9c9f4ff24f.html', 'views.google')
|
||||
|
||||
url('/sitemap_index.xml', 'sitemap.render_sitemap_index')
|
||||
url('/<lang:lang>/sitemap.xml', 'sitemap.render_sitemap')
|
||||
|
@ -48,3 +48,10 @@ def robots():
|
||||
|
||||
def favicon():
|
||||
return send_from_directory(STATIC_DIR, 'favicon.ico', mimetype='image/vnd.microsoft.icon')
|
||||
|
||||
|
||||
#######################################
|
||||
# Verification pages for search engines
|
||||
|
||||
def google():
|
||||
return send_from_directory(STATIC_DIR, 'googleadcf8b9c9f4ff24f.html')
|
||||
|
Reference in New Issue
Block a user