forked from RGClary/ACM-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to latest development version
- Loading branch information
1 parent
44fdc41
commit 826f529
Showing
147 changed files
with
14,032 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.htaccess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<?php | ||
require('common/head-includes.php'); | ||
?> | ||
<title>About Us | 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"> | ||
<h1>About ACM UTSA</h1> | ||
<p> | ||
We at The Association for Computing Machinery at UTSA are dedicated | ||
to giving our members and students the opportunity to gain experience, | ||
network, socialize, learn, and grow outside of the classroom in all fields | ||
of technology and computing. | ||
</p> | ||
<p> | ||
We are first and foremost an official UTSA student organization, and an | ||
official university chapter of the national <a href="http://www.acm.org">Association for Computing Machinery</a>. | ||
</p> | ||
<h1>Our History</h1> | ||
<p> | ||
The UTSA chapter of ACM was founded by Danny Tsang and Kurt King in the Fall of 2015, | ||
who saw the need for a student organization for nearly one thousand computer science | ||
students. Since then, the chapter has grown at a remarkable pace into a huge organization | ||
that provides a valuable social environment for a once-fragmented group. | ||
</p> | ||
<h1>What We Offer</h1> | ||
<p> | ||
As UTSA's premier computer science student organization, ACM offers: | ||
</p> | ||
<ul> | ||
<li>Career development and opportunities</li> | ||
<li>Technical hands-on workshops on various technologies</li> | ||
<li>Social events, hackathons, and competitions</li> | ||
<li>A fun & welcoming atmosphere for all members</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<?php | ||
require('common/footer.php'); | ||
?> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<?php | ||
require('common/head-includes.php'); | ||
?> | ||
<title>Calendar | 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"> | ||
<!-- content here! --> | ||
<div class="embed-responsive embed-responsive-4by3"> | ||
<iframe src="https://calendar.google.com/calendar/embed?src=hfgke17fnl1b7kqgcv7agd86qk%40group.calendar.google.com&ctz=America/Chicago" class="embed-responsive-item"> | ||
</iframe> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<?php | ||
require('common/footer.php'); | ||
?> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<?php | ||
require('common/head-includes.php'); | ||
?> | ||
<title>Careers | 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"> | ||
<h1>Career Opportunity 1</h1> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
<h1>Opportunity at ...</h1> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
<h1>Career Opportunity</h1> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<?php | ||
require('common/footer.php'); | ||
?> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<footer> | ||
<div id="footer" class="container"> | ||
Copyright © 2016 ACM UTSA | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- CSS --> | ||
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" type="text/css" href="css/master.css" /> | ||
<!-- JavaScript --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<div id="menu-container"> | ||
<div id="main-menu-container"> | ||
<nav class="navbar"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-collapse" aria-expanded="false"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="."> | ||
<img id="logo" src="images/logo-bordered.png" alt="The Assocation for Computing Machinery - UTSA Chapter"> | ||
</a> | ||
</div> <!-- .navbar-header --> | ||
<div class="collapse navbar-collapse" id="nav-collapse"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li><a href=".">Home</a></li> | ||
<li><a href="about">About</a></li> | ||
<li><a href="groups">Groups</a></li> | ||
<li><a href="careers">Careers</a></li> | ||
<li><a href="officers">Officers</a></li> | ||
<li><a href="contact">Contact Us</a></li> | ||
<!-- collapse-only menu items --> | ||
<li class="main-sub-menu-item"> | ||
<a href="join">Join ACM</a> | ||
</li> | ||
<li class="main-sub-menu-item"> | ||
<a href="dues">Pay Dues</a> | ||
</li> | ||
<li class="main-sub-menu-item"> | ||
<a href="calendar">Calendar</a> | ||
</li> | ||
<li class="main-sub-menu-item"> | ||
<a href="http://rowdyhacks.com">RowdyHacks</a> | ||
</li> | ||
</ul> | ||
</div><!-- .navbar-collapse --> | ||
</div> <!-- .container --> | ||
</nav> | ||
</div> <!-- #main-menu-container --> | ||
<div id="sub-menu-container" class="container"> | ||
<div id="sub-menu" class="pull-right"> | ||
<a href="join" id="sub-menu-item-1" class="sub-menu-item">Join ACM</a> | ||
<a href="dues" id="sub-menu-item-2" class="sub-menu-item">Pay Dues</a> | ||
<a href="calendar" id="sub-menu-item-3" class="sub-menu-item">Calendar</a> | ||
<a href="http://rowdyhacks.com" id="sub-menu-item-4" class="sub-menu-item">RowdyHacks</a> | ||
</div> | ||
</div> | ||
</div> <!-- #menu-container --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"require": { | ||
"stripe/stripe-php": "3.*" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
require_once('vendor/autoload.php'); | ||
|
||
$stripe = array( | ||
"secret_key" => "sk_test_EHk5qcfpLuiUFbXsIsxJILl6", | ||
"publishable_key" => "pk_test_iJfHyrP1BhsIvaWJEsQ7ojby" | ||
); | ||
|
||
\Stripe\Stripe::setApiKey($stripe['secret_key']); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<?php | ||
require('common/head-includes.php'); | ||
?> | ||
<title>Contact Us | 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"> | ||
<!-- content here! --> | ||
<h1>Contact Us</h1> | ||
<p> | ||
ACM's primary form of communication is Slack (acm-utsa.slack.com). | ||
</p> | ||
[add to slack button] | ||
<p> | ||
For any general inquiries, comments, questions, or any other business, please | ||
contact us at <a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<?php | ||
require('common/footer.php'); | ||
?> | ||
</body> | ||
</html> |
Oops, something went wrong.