mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-05-20 00:59:49 -04:00
11 lines
330 B
HTML
11 lines
330 B
HTML
{% extends 'pages/base.html' %}
|
|
{% load static %}
|
|
{% block title %}Council{% endblock title %}
|
|
{% block css %}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'pages/css/styles.css' %}">
|
|
{% endblock css %}
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<h1 class="display-4">Contact Us!</h1>
|
|
</div>
|
|
{% endblock %} |