blessed-rs/templates/base.html
2022-03-14 00:17:29 +00:00

13 lines
No EOL
413 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<link rel="stylesheet" href="/static/normalize.css" />
<link rel="stylesheet" href="/static/index.css" />
<title>{% block title %}Home{% endblock title %} - Blessed.rs</title>
{% endblock head %}
</head>
<body>
<div id="content">{% block content %}{% endblock content %}</div>
</body>
</html>