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