mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-09 22:10:18 -04:00
58 lines
2.1 KiB
HTML
58 lines
2.1 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>
|
|
{% with key=data|get_item:org.0 %}
|
|
{% for member in key %}
|
|
<div class="{{ org.0 }}-intro">
|
|
<div class="{{ org.0 }}-image">
|
|
<img src="{{ member|filename }}" />
|
|
</div>
|
|
<div class="{{ org.0 }}-text">
|
|
<span>{{ member.first_name }} {{ member.last_name }}</span>
|
|
{% if member.category != 'sponsors' and member.category != 'senators' %}
|
|
<span>{{ member.year }}</span>
|
|
{% endif %}
|
|
|
|
{% if member.category != "officers" %}
|
|
<span>{{ member.title }}</span>
|
|
{% endif %}
|
|
|
|
{% if member.category == "officers" and member.intro != '' %}
|
|
<p>{{ member.intro }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|