27 lines
496 B
HTML
27 lines
496 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
<title>finance planner</title>
|
|
<link rel="stylesheet" type="text/css" href="{% static 'core/style.css' %}">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="title">
|
|
📊 finance planner 💰
|
|
</div>
|
|
|
|
<div id="navi">
|
|
{% block navi %}{% endblock %}
|
|
</div>
|
|
|
|
<div id="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|