182 lines
7.9 KiB
HTML
182 lines
7.9 KiB
HTML
<!DOCTYPE html> {% load ietf_filters staticfiles %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}{% origin %}
|
|
{% load bootstrap3 %}
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{% block title %}No title{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="{% static 'ptmono/stylesheet.css' %}" rel='stylesheet' type='text/css'>
|
|
<link href="{% static 'ptsans/stylesheet.css' %}" rel='stylesheet' type='text/css'>
|
|
<link href="{% static 'ptserif/stylesheet.css' %}" rel='stylesheet' type='text/css'>
|
|
{% comment %}
|
|
<!-- Halloween
|
|
<link href='https://fonts.googleapis.com/css?family=IM+Fell+English+SC|IM+Fell+DW+Pica:400,400italic|Nova+Mono|IM+Fell+English:400,400italic&subset=latin-ext,latin' rel='stylesheet' type='text/css'>
|
|
-->
|
|
{% endcomment %}
|
|
|
|
<link rel="stylesheet" href="{% static 'font-awesome/css/font-awesome.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'ietf/bootstrap/css/bootstrap.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'ietf/bootstrap/css/bootstrap-theme.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'ietf/css/ietf.css' %}">
|
|
{% if debug %}
|
|
<link rel="stylesheet" href="{% static 'jquery.tablesorter/css/theme.bootstrap.min.css' %}">
|
|
{% endif %}
|
|
<style>
|
|
{% block morecss %}{% endblock %}
|
|
</style>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="{% static 'html5shiv/html5shiv.min.js' %}"></script>
|
|
<script src="{% static 'respond/dest/respond.min.js' %}"></script>
|
|
<![endif]-->
|
|
{% block pagehead %}{% endblock %}
|
|
|
|
{% if server_mode and server_mode == "production" %}
|
|
<link rel="shortcut icon" href="{% static 'ietf/images/ietf-icon-blue3.png' %}">
|
|
{% else %}
|
|
<link rel="shortcut icon" href="{% static 'ietf/images/ietf-icon-red3.png' %}">
|
|
{% endif %}
|
|
<link rel="apple-touch-icon" href="{% static 'ietf/images/apple-touch-icon.png' %}">
|
|
</head>
|
|
|
|
<body {% block bodyAttrs %}{%endblock%} data-group-menu-data-url="{% url 'ietf.group.views.group_menu_data' %}">
|
|
<nav class="navbar {% if server_mode and server_mode != "production" %}navbar-default{% else %}navbar-inverse{% endif %} {% if navbar_mode %}{{ navbar_mode }}{% else %}navbar-fixed-top{% endif %}">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="/">
|
|
<img alt="IETF Logo" src="{% static 'ietf/images/ietflogo-small-transparent.png' %}">
|
|
{% if not user.is_authenticated %}
|
|
{% if server_mode and server_mode != "production" %}
|
|
<b><i><small>Development mode</small></i></b>
|
|
{% else %}
|
|
Datatracker
|
|
{% endif %}
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
|
|
<noscript>
|
|
<p class="navbar-text"><small>Enable Javascript for full functionality.</small></p>
|
|
</noscript>
|
|
|
|
<div class="collapse navbar-collapse" id="navbar-collapse">
|
|
<ul class="hidden-nojs nav navbar-nav">
|
|
{% include "base/menu.html" with flavor="top" %}
|
|
</ul>
|
|
|
|
<form class="navbar-form navbar-right hidden-xs" action="/doc/search/">
|
|
<div class="form-group">
|
|
<input class="form-control input-sm" type="text" name="name" placeholder="Document search" required>
|
|
<input type="hidden" name="activedrafts" value="on">
|
|
<input type="hidden" name="rfcs" value="on">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="container-fluid">
|
|
{% comment %} {% bootstrap_messages %} {% endcomment %}
|
|
{% for message in messages %}
|
|
<div class="alert{% if message.level_tag %} alert-{% if message.level_tag == 'error' %}danger{% else %}{{ message.level_tag }}{% endif %}{% endif %}{% if message.extra_tags %} {{message.extra_tags}}{% endif %} alert-dismissable">
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% if request.COOKIES.left_menu == "on" and not hide_menu %} {# ugly hack for the more or less unported meeting agenda edit pages #}
|
|
<div class="row">
|
|
<div class="col-md-2 visible-md visible-lg leftmenu">
|
|
<ul class="nav nav-pills nav-stacked panel panel-default panel-body">
|
|
{% include "base/menu.html" with flavor="left" %}
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-10" id="content">
|
|
<!--[if lt IE 8]>
|
|
<p id="browsehappy" class="collapse alert alert-warning alert-dismissible">
|
|
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
|
<b>You are using an outdated browser.</b> Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.
|
|
</p>
|
|
<![endif]-->
|
|
{% else %}
|
|
<div class="col-md-12 col-sm-12" id="content">
|
|
{% endif %}
|
|
{% block content %}{{ content|safe }}{% endblock %}
|
|
{% block content_end %}{% endblock %}
|
|
{% if request.COOKIES.left_menu == "on" and not hide_menu %}
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% block footer %}
|
|
<hr>
|
|
<div class="col-md-12 col-sm-12">
|
|
<div class="text-center padded">
|
|
<a href="https://www.rfc-editor.org/" class="padded">RFC Editor</a>
|
|
<a href="https://www.ietf.org/llc/" class="padded">IASA & IETF LLC</a>
|
|
<a href="https://trustee.ietf.org/" class="padded">IETF Trust</a>
|
|
<a href="https://www.irtf.org/" class="padded">IRTF</a>
|
|
<a href="https://www.ietf.org/" class="padded">IETF</a>
|
|
<a href="https://www.ietf.org/iesg/" class="padded">IESG</a>
|
|
<a href="https://www.iab.org/" class="padded">IAB</a>
|
|
<a href="https://www.iana.org/" class="padded">IANA</a>
|
|
<a href="https://www.ietf.org/privacy-statement/" class="padded">Privacy Statement</a>
|
|
<a href="https://tools.ietf.org/" class="padded">IETF Tools</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<footer class="row col-md-12 col-sm-12">
|
|
<div class="col-md-12">
|
|
<div class="text-center">
|
|
<p class="small text-muted">
|
|
{% if version_num %}
|
|
<a href="/release/about">About</a> |
|
|
IETF Datatracker |
|
|
<a href="/release/{{version_num}}/">Version {{ version_num }}</a> |
|
|
{{revision_date}} |
|
|
{% endif %}
|
|
Report a bug:
|
|
<a href="https://tools.ietf.org/tools/ietfdb/newticket">Tracker:<span class="fa fa-bug"></span></a>
|
|
<a href="mailto:{{ bugreport_email }}">Email:<span class="fa fa-envelope"></span></a>
|
|
<br>
|
|
Python {{ python_version }} |
|
|
Django {{ django_version }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% include "debug.html" %}
|
|
|
|
<script src="{% static 'jquery/jquery.min.js' %}"></script>
|
|
{% comment %}
|
|
<!-- Remove the *-nojs attributes if we are running js. This depends on jQuery's removeClass(): -->
|
|
<!-- Do this as early as possible (after loading the page and jQuery) to avoid rendering changes -->
|
|
{% endcomment %}
|
|
<script>$(".visible-nojs").removeClass("visible-nojs");</script>
|
|
<script>$(".hidden-nojs").removeClass("hidden-nojs");</script>
|
|
<script src="{% static 'js-cookie/src/js.cookie.js' %}"></script>
|
|
<script src="{% static 'ietf/bootstrap/js/bootstrap.min.js' %}"></script>
|
|
<script src="{% static 'ietf/js/ietf.js' %}"></script>
|
|
{% block js %}{% endblock %}
|
|
{% if debug %}
|
|
<script src="{% static 'jquery.tablesorter/js/jquery.tablesorter.combined.min.js' %}"></script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|
|
|