- dodati folderi layouts, includes, pages - dodate base layout koji koriste ostale stranice - dodat header.html i footer.html i includes koji koriste ostale stranice - sav html refaktorisan tako da koristi base.html layout i header i footer iz includes
16 lines
361 B
HTML
16 lines
361 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<title>Task manager</title>
|
|
</head>
|
|
<body>
|
|
{% include "includes/header.html" %}
|
|
{% block content %}
|
|
{% endblock content %}
|
|
{% include "includes/footer.html" %}
|
|
</body>
|
|
</html>
|