BestNotes/bestnotes/templates/note.html
Th3NiKo 77971cce4d BES-34
Merging new colors
2019-12-08 10:29:08 +01:00

19 lines
508 B
HTML

{% extends 'base.html' %}
{% load static %}
{% block css %}
<link rel="stylesheet" type="text/css" href="{% static 'note.css' %}">
{% endblock %}
{% block content %}
{% include 'navbar.html' %}
<div class="container d-flex justify-content-center">
<div class="row mt-4"><h1 class="text-white">Tytuł: {{ note.name }}</h1></div>
</div>
<div class="container">
<div class="d-flex justify-content-center mt-5">
<h3 class="text-white"> {{ note.text }}</h3>
</div>
</div>
{% endblock %}