This repository was archived by the owner on May 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.php
More file actions
48 lines (47 loc) · 1.78 KB
/
resources.php
File metadata and controls
48 lines (47 loc) · 1.78 KB
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
<?php include_once "common.php" ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Team 9651 Resources | UCC Robotics</title>
<meta name="description" content="The official website for VEX Robotics team 9651, and the UCC Robotics Club.">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
</head>
<body>
<?php include_once "header.php" ?>
<div class="section-primary">
<div class="container">
<h1 class="text-center">Team 9651 Resources</h1>
</div>
</div>
<div class="section-secondary">
<div class="container">
<div class="panel panel-success">
<div class="panel-heading">
<h1>VEX Resources</h1>
</div>
<div class="panel-body">
<h3>Tools and Programs</h3>
<ul class="list-unstyled">
<li><a href="https://atom.io/">Atom</a></li>
<li><a href="http://brackets.io/">Brackets</a></li>
<li><a href="https://github.com/">GitHub</a></li>
<li><a href="https://desktop.github.com/">GitHub Desktop</a></li>
<li><a href="http://brew.sh/">Homebrew</a></li>
<li><a href="https://www.sublimetext.com/">Sublime Text</a></li>
</ul>
</div>
</div>
</div>
</div>
<?php include_once "footer.php" ?>
<script src="js/google_analytics.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>