Files
appunti/notes/templates/notes/base.html
2025-12-12 11:13:12 +05:30

30 lines
957 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>
<form method="post" action="{% url "logout" %}">
{% csrf_token %}
<button class="logout"><img src="{% static "notes/images/icons/logout.png" %}" alt="Logout" title="Logout" /></button>
</form>
</header>
<main>
{% block body %}
{% endblock %}
</main>
</body>
</html>