openstack-manuals/www/templates/indexbase.tmpl
Doug Hellmann c1bbe3f43e use all upper case variables for template vars from generator
Standardize on all upper case variable names so it is easy to tell
local variables in a template apart from global variables set by the
generator.

Change-Id: I69a73b580f1b32547287616c768887732553f9c5
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2017-07-21 11:21:48 -04:00

24 lines
1011 B
Cheetah

<!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"/>
<!-- TEMPLATE_FILE: openstack-manuals/www/{{TEMPLATE_FILE}} -->
<!-- SCRIPTDIR: {{SCRIPTDIR}} -->
<!-- CSSDIR: {{CSSDIR}}-->
<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">
{% include 'templates/css.tmpl' %}
{% include 'templates/google_analytics.tmpl' %}
</head>
<body>
{% include 'templates/header.tmpl' %}
{% block content %}{% endblock %}
{% include 'templates/footer.tmpl' %}
{% include 'templates/script_footer.tmpl' %}
</body>
</html>