tj2023/notes/templates/notes/test.html
2020-10-20 15:15:54 -04:00

10 lines
268 B
HTML

{% extends 'pages/base.html' %}
{% load static %}
{% block css %}
<link rel="stylesheet" type="text/css" href="{% static 'pages/css/styles.css' %}">
{% endblock css %}
{% block content %}
<div class="container mt-5">
{{html|safe}}
</div>
{% endblock content %}