api/App/Views/base.html

13 lines
189 B
HTML
Raw Normal View History

2019-03-30 12:19:46 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
2019-08-21 07:34:08 +00:00
shit!
2019-03-30 12:19:46 +00:00
{% block body %}
{% endblock %}
</body>
</html>