mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-18 18:20:18 -04:00
63 lines
2.0 KiB
HTML
63 lines
2.0 KiB
HTML
---
|
|
permalink: /about
|
|
orgs: ["officers", "excomm", "senators", "sponsors"]
|
|
---
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link href="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_name in site.data.about %}
|
|
{% assign name = page.orgs[forloop.index0] %}
|
|
{% assign org = site.data.about[name] %}
|
|
<section id="{{ org.username }}">
|
|
<h2>{{ org.name }}</h2>
|
|
{% for member in org.members %}
|
|
<div class="{{ org.username }}-intro">
|
|
<div class="{{ org.username }}-image">
|
|
</div>
|
|
<div class="{{ org.username }}-text">
|
|
{% assign year = member.year | downcase %}
|
|
<span>{{ member.first }} {{ member.last }}</span>
|
|
{% if name != "sponsors" and name != "senators" %}
|
|
<span>{{ year }}</span>
|
|
{% endif %}
|
|
{% if name != "officers" %}
|
|
<span>{{ member.title }}</span>
|
|
{% endif %}
|
|
|
|
{% if name == "officers" %}
|
|
<p>{{ member.intro }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|
|
{% include footer.html %}
|
|
</body>
|
|
|
|
</html>
|