datatracker/ietf/templates/doc/frontpage.html
2020-06-27 13:51:19 +00:00

41 lines
1.2 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% block title %}IETF Datatracker{% if server_mode != "production" %} -- Development Mode{% endif %}{% endblock %}
{% block content %}
{% origin %}
<div class="row">
<div class="col-md-12">
<div class="text-center padded">
<img class="ietflogo" src="{% static 'ietf/images/ietflogo.png' %}" alt="IETF">
{% if server_mode != "production" %}
<h1 style="color:#ff0000">Datatracker -- {{ server_mode|capfirst }} Mode</h1>
{% else %}
<h1>Datatracker</h1>
{% endif %}
<p class="center-block">
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 class="center-block">
The primary public face of the IETF is at <a href="https://www.ietf.org/">www.ietf.org</a>.
</p>
</div>
<div class="padded">
<h2>IETF Document Search</h2>
{% include "doc/search/search_form.html" %}
</div>
</div>
</div>
{% endblock content %}