From 7149885c9def9837d242f7e7ccdbd33d12d94570 Mon Sep 17 00:00:00 2001 From: Sunpy Date: Thu, 31 May 2018 12:19:10 +0200 Subject: [PATCH] List of api endpoints --- templates/api.html | 49 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/templates/api.html b/templates/api.html index 6150190..7222bb8 100644 --- a/templates/api.html +++ b/templates/api.html @@ -1 +1,48 @@ -Unimplemented \ No newline at end of file +{% extends "layout.html" %} +{% block headextra %} + +{% endblock %} + +{% block body %} + +
+ {% include "header.html" %} +
+

+ osu!wayback API +

+

+ {{ + [ + "For your application", + "Open database", + "Transparent" + ] | random + }} +

+
+
+ +
+
+
+{% for route in self._TemplateReference__context.environment.app.url_map.iter_rules() if route.endpoint.startswith("api_") %} + {{ route.rule }}
+{% endfor %} +
+
+
+ +{% endblock %} \ No newline at end of file