forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
24 lines (24 loc) · 781 Bytes
/
Copy pathbase.html
File metadata and controls
24 lines (24 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<style>
p.comment {
background-color: #cfc;
border: solid black 1px;
padding: 0.5em;
}
</style>
</head>
<body>
<div id="page_wrapper">
<p class="comment">
This is a very simple html version of the JSON api, to make it easier to manually explore
the API.<br/>
To see the pure JSON version, add '?format=json' to the browser url, or access
the API with the "Accept:" http header set to "Accept: application/json".
</p>
<section class="content">
{% block content %}{{data}}{% endblock %}
</section>
</div>
</body>
</html>