Adds Google site master tracking code to index.html only
- Want to further improve Google search results using sitemaster tools. - Make sure the meta info only lands in index.html and not in all pages on site. Change-Id: I3b63ea64c639060b9f6893e88df4bb777a7c8064
This commit is contained in:
parent
ea654ec663
commit
ab0df93a41
@ -1,6 +1,6 @@
|
||||
{% set scriptdir = './common/js/' %}
|
||||
{% set cssdir = './common/css/' %}
|
||||
{% extends "templates/base.tmpl" %}
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}Current{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
|
21
www/templates/indexbase.tmpl
Normal file
21
www/templates/indexbase.tmpl
Normal file
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
|
||||
<meta name="google-site-verification" content="Ip5yk0nd8yQHEo8I7SjzVfAiadlHvTvqQHLGwn1GFyU" />
|
||||
{% block header %}{% endblock %}
|
||||
<title>OpenStack Docs: {% block pagetitle %}{% endblock %}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<!-- CSS in: {{ cssdir }}-->
|
||||
{% include 'templates/css.tmpl' %}
|
||||
</head>
|
||||
<body>
|
||||
{% include 'templates/header.tmpl' %}
|
||||
{% block content %}{% endblock %}
|
||||
{% include 'templates/footer.tmpl' %}
|
||||
<!-- Scripts in: {{ scriptdir }}-->
|
||||
{% include 'templates/script_footer.tmpl' %}
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user