shortener/shortener/templates/base.html

12 lines
166 B
HTML
Raw Normal View History

2021-05-29 15:57:49 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>URL shortener</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>