forked from RGClary/ACM-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
70 lines (70 loc) · 3.9 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<?php
require('common/head-includes.php');
?>
<title>The Association for Computing Machinery — UTSA</title>
</head>
<body>
<?php
require('common/menu.php');
?>
<div id="content" class="container">
<div class="row">
<div class="col-sm-12">
<div class="row section-container" id="home-page-acm-image">
<div class="col-sm-12">
</div>
</div>
<div class="row section-container">
<div class="col-sm-12">
<h1>
Meetings
</h1>
<p>
<?php
if(time() > 1534982400){
//less than 1 week before meetings start
echo('Meetings are held on a weekly basis at UTSA\'s main campus from 3-4 on Wednesdays in the NPB. We also have special events that we share on <a href="#slack-container">Slack</a> and post to our <a href="calendar">calendar</a>.');
}
else{
//more than one week before meetings start
echo('Meetings will be held on a weekly basis at UTSA\'s main campus from 3-4 on Wednesdays in the NPB, starting August 29th. We also have special events that we share on <a href="#slack-container">Slack</a> and post to our <a href="calendar">calendar</a>.');
}
?>
</p>
</div>
</div>
<div class="row section-container" style="display:table;" id="slack-container">
<div class="col-sm-8">
<h1>
Slack
</h1>
<p>
Want to share notes from class? Want to hear about events on campus or talk about the latest and greatest stuff in technology? From app development to unix security, ACM has people who share your interests. The best way to get connected with other students and hear about upcoming events, is through <a href="http://acm-utsa.slack.com">Slack</a>. We use Slack to share information about internships, events, and opportunities at UTSA and around town. Members can recieve an invitation to join by sending an email to <a href="mailto:[email protected]">[email protected]</a> or by contacting one of our <a href="officers.php">officers</a>.
</p>
</div>
<div class="col-sm-4 hidden-xs">
<div style="margin:120px 0px 0px 0px;text-align: center;">
<a class="link" href="slack_invite.php" target="_blank">
<input type="button" style="outline-style: none;" value="Request Slack Invite" />
</a>
</div>
</div>
<div class="col-sm-4 hidden-sm hidden-md hidden-lg hidden-xl">
<div style="margin:40px 0px 0px 0px;text-align: center;">
<a href="slack_invite.php">
<input type="button" style="outline-style: none;" value="Request Slack Invite" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
require('common/footer.php');
?>
</body>
</html>