b603d1be80
added a new fixed badge indicating the deprecation status of each release * obsolete - "No longer supported by the community. For the current release, CLICK HERE.", #ff0000 * EOL - "No longer supported by the community. For the current release, CLICK HERE.", #ff0000 * maintained - This has two states. The current release and recent releases. ** Current Release - "This is the current release.", #30739C ** Recent Release - "This is maintained, but NOT the current release. For the current release, CLICK HERE.", #eaeaea * Current Release - "This is the current release.", #30739C * Recent Release - "This is maintained, but NOT the current release. For the current release, CLICK HERE.", #eaeaea * development - "This release is currently under development For the current release, CLICK HERE.", #eaeaea Change-Id: I67a759440c2e99b33aa925c5e17c11a1b885ac82
24 lines
962 B
Cheetah
24 lines
962 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}}-->
|
|
{% 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/deprecated_badge.tmpl' %}
|
|
{% include 'templates/footer.tmpl' %}
|
|
{% include 'templates/script_footer.tmpl' %}
|
|
</body>
|
|
</html>
|