CDRM-Project/templates/profile.html
2024-09-08 20:13:39 -04:00

16 lines
350 B
HTML

<!-- Extend the base HTML template -->
{% extends "base.html" %}
<!-- Extend CSS to add CSS for particular page -->
{% block css %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/profile.css') }}">
{% endblock %}
<!-- Main body block -->
{% block main_body %}
<main>
</main>
<!-- End main block -->
{% endblock %}