BestNotes/bestnotes/templates/note.html

19 lines
508 B
HTML
Raw Normal View History

2019-12-07 19:24:05 +01:00
{% 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">
2019-12-08 10:29:08 +01:00
<div class="row mt-4"><h1 class="text-white">Tytuł: {{ note.name }}</h1></div>
2019-12-07 19:24:05 +01:00
</div>
<div class="container">
<div class="d-flex justify-content-center mt-5">
2019-12-08 10:29:08 +01:00
<h3 class="text-white"> {{ note.text }}</h3>
2019-12-07 19:24:05 +01:00
</div>
</div>
{% endblock %}