Update about page

Add exec email alias, make tl;dr a little more friendly
This commit is contained in:
Cara Salter 2024-04-03 18:50:42 +11:00
parent 663655b125
commit e3d5ac08b8
No known key found for this signature in database
GPG key ID: A8A3A601440EADA5

View file

@ -7,12 +7,13 @@
<h4>tl;dr</h4> <h4>tl;dr</h4>
<p>We are a group of computer science enthusiasts that hosts computer science <p>We are a group of computer science enthusiasts that hosts computer science
related events like programming competitions and workshops, and more casual related events like programming competitions and workshops, and more casual
events as well! If youre interested in joining, stop by our meetings! We are events as well! If youre interested in joining, stop by our meetings! We're
very friendly. You can find a list of our events and meetings <a href="{{ very friendly. You can find a list of our upcoming events and meetings <a href="{{
url_for('main.events') url_for('main.events')
}}">here</a>.</p> }}">here</a>.</p>
<h4>Exec Board</h4> <h4>Exec Board</h4>
<p><em>To contact our exec board, shoot us an email at acm [at] wpi.edu!</em></p>
<div class="row"> <div class="row">
<div class="col"> <div class="col">
<div class="card" id="president"> <div class="card" id="president">
@ -121,20 +122,21 @@ very friendly. You can find a list of our events and meetings <a href="{{
</div> </div>
<h4>History</h4> <h4 class="mt-3">History</h4>
<p>ACM established student chapters to provide an opportunity for students to <p>The Association for Computing Machinery (ACM) established student chapters to
play a more active role in the Association and its professional activities. By provide an opportunity for students to play a more active role in the
encouraging organization of student chapters on college and university campuses, Association and its professional activities. By encouraging organization of
the Association is able to introduce students to the benefits of professional student chapters on college and university campuses, the Association is able to
organization. These benefits include regular meetings that encourage and enhance introduce students to the benefits of professional organization. These benefits
learning through exchange of ideas among students as well as between established include regular meetings that encourage and enhance learning through exchange of
professionals and students. Members of a student chapter may also take advantage ideas among students as well as between established professionals and students.
of the activities and services provided by ACM, including the lectureship Members of a student chapter may also take advantage of the activities and
program, student programming and tutorial contests, and the publications services provided by ACM, including the lectureship program, student programming
program. Student chapters provide an obvious setting for the development and and tutorial contests, and the publications program. Student chapters provide an
demonstration of leadership capabilities. Finally, students find the various obvious setting for the development and demonstration of leadership
activities of ACM and its student chapters both professionally and socially capabilities. Finally, students find the various activities of ACM and its
exciting as well as rewarding.</p> student chapters both professionally and socially exciting as well as
rewarding.</p>
<p>Initially, the ACM organizational structure was based solely on individual <p>Initially, the ACM organizational structure was based solely on individual
membership. In 1954, as a result of growth and the wishes of its members, membership. In 1954, as a result of growth and the wishes of its members,
@ -184,7 +186,9 @@ officers in the chapter system.</p>
officers = new Request("/api/officers/current") officers = new Request("/api/officers/current")
fetch(officers).then(async (res) => { fetch(officers).then(async (res) => {
data = await res.json() data = await res.json()
{% if config["DEBUG"] %}
console.log(data) console.log(data)
{% endif %}
for (var i = 0; i < data.length; i++) { for (var i = 0; i < data.length; i++) {
let title = data[i]["position"] let title = data[i]["position"]