feat: change api framework to angel3.

This commit is contained in:
2021-12-17 18:24:32 +08:00
parent 8face6f724
commit ed863ecb41
39 changed files with 1008 additions and 368 deletions
+5
View File
@@ -0,0 +1,5 @@
{% extends "layout.html" %}
{% block title %}Error{% endblock %}
{% block body %}
<p>Error: {{ message }}</p>
{% endblock %}
+10
View File
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>