43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% block title %}
|
|
IETF Datatracker
|
|
{% if server_mode != "production" %}– {{ server_mode|capfirst }} Mode{% endif %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="text-center p-5">
|
|
<div class="ietflogo mx-auto p-3">
|
|
{% include "logo.html" with org="ietf" only %}
|
|
</div>
|
|
{% if server_mode != "production" %}
|
|
<h1 class="text-danger">Datatracker – {{ server_mode|capfirst }} Mode</h1>
|
|
{% else %}
|
|
<h1>Datatracker</h1>
|
|
{% endif %}
|
|
<p>
|
|
The IETF Datatracker is the day-to-day front-end to the IETF database for people
|
|
who work on IETF standards.
|
|
<br>
|
|
It contains data about the documents, working groups,
|
|
meetings, agendas, minutes, presentations, and more, of the IETF.
|
|
</p>
|
|
<p>
|
|
The primary public face of the IETF is at
|
|
<a href="https://www.ietf.org/">www.ietf.org</a>.
|
|
</p>
|
|
</div>
|
|
<div class="p-5">
|
|
<h2>IETF Document Search</h2>
|
|
{% include "doc/search/search_form.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/doc-search.js" %}"></script>
|
|
{% endblock %} |