mmo-project/lisp/www/templates/layouts/default.html

12 lines
249 B
HTML
Raw Normal View History

2023-12-16 15:06:29 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css">
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>