-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
executable file
·81 lines (74 loc) · 3.04 KB
/
contact.html
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
80
81
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>m410: Java 8 Web Framework</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="resources/css/resets.css">
<link rel="stylesheet" href="resources/css/layout.css">
<link rel="stylesheet" href="resources/css/typography.css">
<link rel="stylesheet" href="resources/css/style.css">
<script src="resources/js/vendor/respond.min.js"></script>
<!--[if lt IE 9]> <script src="resources/js/vendor/html5shiv.js"></script> <![endif]-->
</head>
<body>
<div class="header-band">
<header class="container row">
<div class="col span_4">
<img class="logo" src="resources/images/m410_logo.png" alt=""/>
</div>
<div class="col span_8">
<nav>
<ul class="super-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="news.html">News</a></li>
<li><a href="javadoc/current/index.html" target="_blank">JavaDoc</a></li>
<li><a href="http://repo.m410.org/content/repositories/releases/" target="_blank">Repo</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
</div>
<div class="article-band">
<article class="container row">
<section class="col span_12">
<h1>Contact</h1>
<p>
Find me on github.
</p>
<ul class="std">
<li><a href="http://m410.github.com">Github</a></li>
</ul>
<p>
Or just send me an email at:
</p>
<ul class="std">
<li><a href="mailto:[email protected]">Michael Fortin</a></li>
</ul>
</section>
</article>
</div>
<div class="footer-band">
<footer class="container row">
<div class="col span_6">
<p>
<a class="eapps-link" href="http://www.eapps.com/services/general-vps-hosting.php">
<img src="http://www.eapps.com/images/logos/eapps_hosted_border.gif" alt="VPS hosting" title="VPS hosting">
</a>
</p>
</div>
<div class="col span_6">
<p>Licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License 2.0</a> </p>
</div>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="resources/js/vendor/jquery-1.10.1.min.js"><\/script>')</script>
</body>
</html>