librepages/templates/components/base.html

15 lines
440 B
HTML
Raw Normal View History

2022-09-16 17:41:39 +05:30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="{{ assets.css }}" />
2022-12-03 14:53:55 +05:30
<title>{% block title %} {% endblock %} | LibrePages</title>
2022-09-16 17:41:39 +05:30
</head>
2022-12-03 14:53:55 +05:30
<body class="default-body">
2022-09-16 17:41:39 +05:30
<header>{% block nav %} {% endblock %}</header>
{% block main %} {% endblock %}
{% include "footer" %}
</body>
</html>