This repository was archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.php
More file actions
79 lines (62 loc) · 3.63 KB
/
Copy pathdev.php
File metadata and controls
79 lines (62 loc) · 3.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Riley Lannon & Michael Wilke">
<title>EnArch | Software</title>
<!-- Bootstrap Core CSS -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Fonts -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!-- Custom Theme CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<link href="css/store.css" rel="stylesheet">
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-custom">
<?php include('head.php'); ?>
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h1>Game and Software Development</h1>
<p>We are excited to begin software development here at EnArch. Although nothing is complete yet, we have a lot in the works. We'll make sure to keep the site updated as we continue working.</p>
<p>As to what we are working on? We are currently developing various programs for encrypting files, basic games, even a "tech dictionary" app. Most of this will take a while to be released, but we will make sure that you know when it is!</p>
</div>
</div>
<Br /><br />
</section>
<section id="dev" class="banner-social-buttons text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<ul class="list-inline banner-social-buttons">
<li><a data-toggle="modal" href="#myModal" class="btn btn-default btn-lg"></i> <span class="network-name">Pong</span></a>
</li>
</ul>
</div>
</div>
<div id="myModal" class="modal fade in" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<a class="btn btn-default" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span></a>
<h4 class="modal-title" id="myModalLabel">Information</h4>
</div>
<div class="modal-body">
<h4>Arduino-Based Pong Console</h4>
<p>This system is a blast from the past! Made with an Arduino, some wires, potentiometers (knobs), an RCA cable and TV, it works like the real thing. Have fun with friends and family playing videogames the old-school way. The best part? You can make it yourself. View the source and schematics <a href="source/arduino_source.php" target="_blank">here</a>.</p>
</div>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dalog -->
<br /><br />
</section>
<?php include('footer.php'); ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/grayscale.js"></script>
</body>
</html>