24 lines
840 B
HTML
24 lines
840 B
HTML
{# bs5ok #}
|
|
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block title %}Document Search{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<a href="/doc/stats/newrevisiondocevent?{{ queryargs }}"
|
|
class="icon-link float-end">
|
|
<i class="bi bi-bar-chart-line"></i>
|
|
</a>
|
|
<h1>Document Search</h1>
|
|
{% include "doc/search/search_form.html" %}
|
|
{% if meta.searching %}
|
|
{% include "doc/search/search_results.html" with start_table=True end_table=True %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
<script src="{% static "ietf/js/doc-search.js" %}"></script>
|
|
{% endblock %} |