tj2023/notes/templates/notes/meeting.html
2020-10-20 10:02:52 -04:00

11 lines
265 B
HTML

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