BestNotes/bestnotes/templates/note.html

19 lines
470 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">
<div class="row mt-4"><h1>Tytuł: {{ note.name }}</h1></div>
</div>
<div class="container">
<div class="d-flex justify-content-center mt-5">
<h3> {{ note.text }}</h3>
</div>
</div>
{% endblock %}