-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
48 lines (39 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body>
<div class="container">
<div class="inner">
<div class="masthead clearfix">
<h4 class="masthead-brand"><a href="./">Stephen James Kennedy</a></h4>
<ul class="nav masthead-nav">
<li><a href="./">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h2>Feel free to get in touch!</h2>
</div>
</div>
<div class="container">
<hr>
<footer>
<p>© 2014 Stephen James Kennedy</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>