-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (130 loc) · 5.4 KB
/
index.html
File metadata and controls
143 lines (130 loc) · 5.4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>MatthewDiana.com</title>
<!-- bootstrap css -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- my custom styling -->
<link href="matt.css" rel="stylesheet">
<!-- font-awesome -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- <script src="js/ie-emulation-modes-warning.js"></script> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<!--
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active">
<a href="/"><i class="fa fa-home" aria-hidden="true"></i> Home</a>
</li>
<li role="presentation">
<a href="#contact" data-toggle="modal" data-target="#contactModal"><i class="fa fa-envelope" aria-hidden="true"></i> Contact</a>
</li>
</ul>
-->
<div class="pull-right">
<!--<button class="btn btn-danger"><i class="fa fa-file-pdf-o" aria-hidden="true"></i> Résumé</button>-->
<!-- <button class="btn btn-default" data-toggle="modal" data-target="#contactModal"><i class="fa fa-envelope" aria-hidden="true"></i> Contact Me</button> -->
<div class="contact">
<i class="fa fa-envelope-o" aria-hidden="true"></i> matthew.a.diana@gmail.com
</div>
</div>
</nav>
<!-- <h3 class="text-muted">Matthew Diana</h3> -->
</div>
<div class="jumbotron">
<h1>Matthew Diana</h1>
<p class="lead">Software Engineer working in NYC</p>
<div class="row">
<div class="col-xs-6 col-sm-3">
<a href="https://github.com/MatthewDiana">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
<div class="col-xs-6 col-sm-3">
<a href="https://linkedin.com/in/matthew-diana">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
<div class="col-xs-6 col-sm-3">
<a href="https://stackoverflow.com/users/1879800/matthew-diana?tab=profile">
<i class="fa fa-stack-overflow" aria-hidden="true"></i>
</a>
</div>
<div class="col-xs-6 col-sm-3">
<a href="https://bitbucket.org/MatthewDiana/profile/repositories">
<i class="fa fa-bitbucket" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="row marketing">
<div class="col-md-6">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">
Education
<i class="fa fa-graduation-cap">
</i>
</h3>
</div>
<div class="panel-body">
Computer Science B.S. <br />
Binghamton University
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">
Work
<i class="fa fa-briefcase"></i>
</h3>
</div>
<div class="panel-body">
Software Engineer <br />
DoorDash
</div>
</div>
</div>
</div>
</div> <!-- /container -->
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- bootstrap js -->
<script src="dist/js/bootstrap.min.js"></script>
<!-- bootbox js -->
<script src="dist/js/bootbox.min.js"></script>
<!-- bootstrap validator js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/1000hz-bootstrap-validator/0.11.5/validator.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
<!-- google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87913732-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>