-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
127 lines (105 loc) · 6.1 KB
/
about.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
<!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, shrink-to-fit=no, initial-scale=1">
<meta name="description" content="indexhibit-inspired portfolio website built with bootstrap v3">
<meta name="author" content="shacharoz">
<title>indexhibit inspired bootstrap portfolio template</title>
<!-- Bootstrap Core CSS -->
<link href="bootstrap-framework/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap-framework/css/font-awesome.min.css" rel="stylesheet">
<link href="css/affix.css" rel="stylesheet">
<link href="css/portfolio-articles.css" rel="stylesheet">
<link href="css/mobile-navbar.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".scrollspy">
<!-- Navigation for mobile (small screen) -->
<nav class="hidden-md hidden-lg navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Shachar Oz: Portfolio</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav side-nav">
<li><a href="index.html">Work</a>
<li><a href="resume.html">Resume</a>
<li class="active"><a href="about.html">About</a></li>
<li><a href="mailto:shachar.oz@gmail.com">Contact</a></li>
<li><a href="https://github.com/shacharoz/indexhibit-inspired-bootstrap-template/archive/gh-pages.zip">Download</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-3 scrollspy">
<ul id="nav" class="nav hidden-xs hidden-sm" data-spy="affix">
<li class="hidden-li">------------------------------</li>
<li><a href="index.html">Work</a>
<ul class="nav">
<li><a href="#featured">Featured</a></li>
<li><a href="#2016">2016</a></li>
<li><a href="#2015">2015</a></li>
</ul>
</li>
<li><a href="resume.html">Resume</a>
<ul class="nav">
<li><a href="#experience">Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#awards">Awards</a></li>
<li><a href="#volunteer">Volunteer</a></li>
</ul>
</li>
<li class="active"><a href="about.html">About</a></li>
<li><a href="mailto:shachar.oz@gmail.com">Contact</a></li>
<li><a href="https://github.com/shacharoz/indexhibit-inspired-bootstrap-template/archive/gh-pages.zip">Download</a></li>
<li class="hidden-li">------------------------------</li>
<li class="hidden-li">------------------------------</li>
<li class="hidden-li">------------------------------</li>
<li class="text"><img src="http://dummyimage.com/250x250/aaaaaa/ffff00.jpg" width="95%" /> </li>
<li class="text">your title and tagline</li>
<li class="text">focus areas, tags, key words</li>
<li class="hidden-li">------------------------------</li>
<li class="hidden-li">------------------------------</li>
<li class="hidden-li">------------------------------</li>
<li class="text">copyright @ your name, 2016</li>
</ul>
</div>
<!-- end of sidebar -->
<div class=" col-md-9">
<!-- main content area -->
<section>
<h3 class="section-title">about</h3>
<p>heavily inspired by <a href="inexhibit.org" target="_blank">inexhibit.org</a>.
i also saw <a href="http://fluid.media.mit.edu/" target="_blank">Fluid Interfaces Media Lab page</a>.</p>
<p>i tried indexhibit, but it requires a lot of rewriting stuff i already have working in bootstrap.</p>
<p>i learned that i need to use bootstrap affix component, but wasnt so successful with it. until i found the code by <a href="http://www.sitepoint.com/understanding-bootstraps-affix-scrollspy-plugins">George Martsoukos</a>.</p>
<p>the entire dev road is inside this github.</p>
<p>i ended up using also a library called <a href="https://github.com/blueimp/Gallery" target="_blank">blueimp</a> (by Sebastian Tschan) for the slideshows: both videos and images. i am still looking for a slideshow that can have both videos and images in one element. for now, there are 2 separate slideshows per media type.</p>
<br>
<p>i am <a href="flux-experiences.com/people/shacharoz/" target="_blank">shachar oz</a>, and i'm just a frick to build portfolios...</p>
</section>
</div>
</div>
<!--end of .row-->
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$('#nav').affix({
offset: {
top: $('#nav').offset().top,
bottom: ($('footer').outerHeight(true) + 40
}
});
</script>
</body>
</html>