api-site/www/templates/indexbase.tmpl
Anne Gentle b1f478ab12 Adds styled 404 error page for developer.openstack.org migrating to AFS
- Also templatizes the Google Analytics code snippet for
consistency with openstack-manuals for ease of maintenance.

Change-Id: I7b1e1a1dfe894ee71ba2c973488a224a699c0166
2016-11-01 15:50:49 -05:00

23 lines
1000 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"/>
<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' %}
{% include 'templates/google_analytics.tmpl' %}
</head>
<body>
{% include 'templates/header.tmpl' %}
{% block content %}{% endblock %}
{% include 'templates/footer.tmpl' %}
<!-- Scripts in: {{ scriptdir }}-->
{% include 'templates/script_footer.tmpl' %}
</body>
</html>