-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject-1.html
145 lines (122 loc) · 5.05 KB
/
project-1.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
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
144
145
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jon's Head in the Cloud(s)</title>
<link rel="shortcut icon" href="favicon.ico">
<!-- Add your CSS files here -->
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/nivo/default.css">
<link rel="stylesheet" href="css/themes/blue.css">
<!-- Add your Fonts here -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="logo"><img src="img/logo.svg" alt="Logo"></div>
<div class="social">
<a href="http://www.linkedin.com/pub/jon-weisbaum/34/621/52" class="icon-linkedin" title="LinkedIn"></a>
</div>
<!-- Social Icons End -->
<header>
<nav id="nav">
<ul class="nav">
<li><img src="img/logo.svg" alt="My Logo"></li>
<li><a href="index.html" class="icon-user"><span>Profile</span></a></li>
<li class="active"><a href="work.html" class="icon-briefcase"><span>Work</span></a></li>
<li><a href="resume.html" class="icon-list"><span>Resume</span></a></li>
<li><a href="contact.html" class="icon-mail"><span>Contact</span></a></li>
</ul>
</nav>
</header>
<!-- Header End -->
<section class="content">
<article class="s-project">
<h2>Assorted school projects</h2>
<div class="project-nav">
<a href="project-3.html" class="icon-arrow-left-5" title="Previous Project"></a>
<a href="work.html" class="icon-layout" title="All Projects"></a>
<a href="project-2.html" class="icon-arrow-right-5" title="Next Project"></a>
</div>
<div class="details">
<div>
<h4>Project Description</h4>
<p>In my classes, I've been fortunate enough to gain experience with many facets of development. I've written a tiny rootkit which uses DLL injection to hide a program from the task manger. I've written many different data structures as well, from B+ Trees to PM Quadtrees. I look forward to continuing my education and growing as a developer.</p>
</div>
<ul>
<li>
<h4>Client</h4>
<p>UMD</p>
</li>
<li>
<h4>Year</h4>
<p>2011 - 2014</p>
</li>
</ul>
</div>
<!--
<div class="slider-wrapper theme-default clearfix">
<div class="slider NivoSLider">
<img src="img/work/photography/1.jpg" data-thumb="img/work/photography/1.jpg" alt="" title="This is an image description." />
<img src="img/work/photography/2.jpg" data-thumb="img/work/photography/2.jpg" alt="" />
<img src="img/work/photography/3.jpg" data-thumb="img/work/photography/3.jpg" alt="" />
<img src="img/work/photography/4.jpg" data-thumb="img/work/photography/4.jpg" alt="" />
<img src="img/work/photography/5.jpg" data-thumb="img/work/photography/5.jpg" alt="" />
<img src="img/work/photography/6.jpg" data-thumb="img/work/photography/6.jpg" alt="" />
<img src="img/work/photography/7.jpg" data-thumb="img/work/photography/7.jpg" alt="" />
<img src="img/work/photography/8.jpg" data-thumb="img/work/photography/8.jpg" alt="" />
<img src="img/work/photography/9.jpg" data-thumb="img/work/photography/9.jpg" alt="" />
</div>
</div>
-->
<!-- Slider End -->
</article>
</section>
<!-- Content End -->
</div>
<!-- Container End -->
<!-- Add your scripts here -->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/jquery.mixitup.js"></script>
<script src="js/jquery.swipebox.js"></script>
<script type="text/javascript" src="js/jquery.nivo.slider.js"></script>
<script>
var navigation = responsiveNav("#nav", {
animate: true, // Boolean: Use CSS3 transitions, true or false
transition: 400, // Integer: Speed of the transition, in milliseconds
label: "", // String: Label for the navigation toggle
insert: "before", // String: Insert the toggle before or after the navigation
customToggle: "", // Selector: Specify the ID of a custom toggle
openPos: "relative", // String: Position of the opened nav, relative or static
jsClass: "js", // String: 'JS enabled' class which is added to <html> el
init: function(){}, // Function: Init callback
open: function(){}, // Function: Open callback
close: function(){} // Function: Close callback
});
// Mixitup Filter Gallery
$(function(){
$('.work-grid').mixitup();
});
// Swipebox Gallery
$(function($) {
$(".swipebox").swipebox();
});
// Nivo Slider
$(window).load(function() {
$('.slider').nivoSlider({
effect: 'boxRandom',
slices: 15,
boxCols: 8,
boxRows: 4,
animSpeed: 500,
pauseTime: 3000,
controlNav: true
});
});
</script>
</body>
</html>