forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontpage.html
More file actions
43 lines (43 loc) · 1.61 KB
/
frontpage.html
File metadata and controls
43 lines (43 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{# 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">
<img class="ietflogo p-3"
src="{% static 'ietf/images/ietf-logo.svg' %}"
alt="IETF">
{% 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 %}