Make the menu bar search field appear on slightly smaller screen widths.
- Legacy-Id: 9540
Note: SVN reference [9525] has been migrated to Git commit 651477699b
171 lines
6.9 KiB
HTML
171 lines
6.9 KiB
HTML
<!DOCTYPE html> {% load ietf_filters %}
|
|
<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="/fonts/PTMono/stylesheet.css" rel='stylesheet' type='text/css'>
|
|
<link href="/fonts/PTSans/stylesheet.css" rel='stylesheet' type='text/css'>
|
|
<link href="/fonts/PTSerif/stylesheet.css" rel='stylesheet' type='text/css'>
|
|
{% comment %}
|
|
<!-- Halloween
|
|
<link href='http://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="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
|
|
<link rel="stylesheet" href="/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="/css/ietf.css">
|
|
<style>
|
|
{% block morecss %}{% endblock %}
|
|
</style>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
{% block pagehead %}{% endblock %}
|
|
|
|
{% if server_mode and server_mode == "production" %}
|
|
<link rel="shortcut icon" href="/images/ietf-icon-blue3.png">
|
|
{% else %}
|
|
<link rel="shortcut icon" href="/images/ietf-icon-red3.png">
|
|
{% endif %}
|
|
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
|
|
</head>
|
|
|
|
<body {% block bodyAttrs %}{%endblock%} data-group-menu-data-url="{% url "group_menu_data" %}">
|
|
{% with server_mode="production" %}
|
|
<nav class="navbar {% if server_mode and server_mode == "production" %}navbar-inverse{% else %}navbar-default{% endif %} navbar-fixed-top" role="navigation">
|
|
<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="/images/ietflogo-small-transparent.png">
|
|
{% if not user.is_authenticated %}
|
|
{% if server_mode and server_mode == "production" %}
|
|
Datatracker
|
|
{% else %}
|
|
<b><i>Development mode</i></b>
|
|
{% 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/" role="search">
|
|
<div class="form-group">
|
|
<input class="form-control input-sm" type="text" name="name" placeholder="Document search">
|
|
<input type="hidden" name="activedrafts" value="on">
|
|
<input type="hidden" name="rfcs" value="on">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{% endwith %}
|
|
<div class="container-fluid">
|
|
{% if messages %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
{% for message in messages %}
|
|
<p class="alert alert-info {% if message.tags %}{{ message.tags }}{% endif %}">{{ message }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 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]-->
|
|
|
|
{% endif %}
|
|
{% block content %}{% endblock %}
|
|
{% block content_end %}{% endblock %}
|
|
{% if not hide_menu %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<hr>
|
|
<div class="col-md-12">
|
|
<div class="text-center padded">
|
|
<a href="//www.internetsociety.org/" class="padded">ISOC</a>
|
|
<a href="//trustee.ietf.org/" class="padded">IETF Trust</a>
|
|
<a href="//www.rfc-editor.org/" class="padded">RFC Editor</a>
|
|
<a href="//www.irtf.org/" class="padded">IRTF</a>
|
|
<a href="//www.ietf.org/iesg/" class="padded">IESG</a>
|
|
<a href="//www.ietf.org/" class="padded">IETF</a>
|
|
<a href="//www.iab.org/" class="padded">IAB</a>
|
|
<a href="//iaoc.ietf.org" class="padded">IASA & IAOC</a>
|
|
<a href="//tools.ietf.org/" class="padded">IETF Tools</a>
|
|
<a href="//www.iana.org/" class="padded">IANA</a>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="row">
|
|
<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 %}
|
|
<a href="//tools.ietf.org/tools/ietfdb/newticket">Report a bug</a>
|
|
{% if messages %}
|
|
<ul class="messages">
|
|
{% for message in messages %}
|
|
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="/js/lib/jquery-1.11.2.min.js"><\/script>')</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="/js/lib/jquery.cookie.min.js"></script>
|
|
<script src="/js/lib/bootstrap.min.js"></script>
|
|
<script src="/js/ietf.js"></script>
|
|
{% block js %}{% endblock %}
|
|
</body>
|
|
</html>
|
|
|