mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-16 01:00:17 -04:00
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% load static %}
|
|
<head>
|
|
<link href="{% static 'css/about.css' %}" rel="stylesheet" />
|
|
{% include 'head.html' %}
|
|
<title>About - TJSGA</title>
|
|
</head>
|
|
<body>
|
|
{% include 'header.html' %}
|
|
<div id="wrapper" class="fluid">
|
|
<section id="contact">
|
|
<h2>Contact Us!</h2>
|
|
<div class="desc">
|
|
<span class="quote">
|
|
"The world is moved not only by the mighty shoves of the heroes, but also by the aggregate of the tiny pushes of each honest worker." - Helen Keller
|
|
</span>
|
|
</div>
|
|
<div class="desc">
|
|
Contact us at
|
|
<a href="mailto:sga.tjhsst@gmail.com">sga.tjhsst@gmail.com</a>. We would love to answer questions or hear
|
|
about how you think we can improve TJ!
|
|
</div>
|
|
</section>
|
|
<hr />
|
|
{% for org in categories %}
|
|
<section id="{{ org.0 }}">
|
|
<h2>{{ org.1 }}</h2>
|
|
{% for member in categories.org %}
|
|
<div class="{{ org.0 }}-intro">
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|