blessed-rs/templates/base.html

12 lines
No EOL
350 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<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>