26 lines
750 B
HTML
26 lines
750 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="stylesheet" href="{% static "notes/stylesheets/style.css" %}" type="text/css">
|
|
<title>{% block title %}{% endblock %} | Appunti</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a href="{% url "home" %}" class="home">Appunti</a>
|
|
<a href="{% url "post-a-note" %}">
|
|
<img src="{% static "notes/images/icons/post-a-note.png" %}" alt="Post a note" title="Post a note" />
|
|
</a>
|
|
<a href="{% url "profile" %}">
|
|
<img src="{% static "notes/images/icons/profile.png" %}" alt="Profile" title="Profile" />
|
|
</a>
|
|
</header>
|
|
<main>
|
|
{% block body %}
|
|
{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|