uninsane/templates/base.html

19 lines
331 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Perfectly Sane</title>
<link rel="stylesheet" href="{{ get_url(path="static/style.css") | safe }}">
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>
</html>