-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (95 loc) · 3.33 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Bambi Haber</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="assets/js/main.min.js"></script>
<link rel="stylesheet" type="text/css" href="assets/css/style.css?v=1"/>
<script type="text/javascript">
$(document).ready(function () {
new com.bambiHaber.Page();
});
</script>
</head>
<body>
<section id="title">
<h1>
<div class="toolini"></div>
<span>Bambi Haber</span> <br/>
<span> I play with code :]</span>
<div class="hive">
<div class="row">
<div class="square fa fa-phone" id="phone"></div>
<div class="square fa fa-location-arrow" id="address"></div>
</div>
<div class="row">
<div class="square fa fa-linkedin" id="linkedIn"></div>
<div class="square fa fa-envelope" id="emailIcon"></div>
</div>
</div>
</h1>
</section>
<section id="extras">
<div class="optionsContainer">
<div class="popOption aboutMe">
<div class="fa fa-info"></div>
About me
</div>
<div class="popOption cv">
<div class="fa fa-briefcase"></div>
Companies i worked with
</div>
<div class="popOption canaryMidi">
<div class="fa fa-music"></div>
Web MIDI devices experiment
</div>
<div class="popOption github">
<div class="fa fa-github"></div>
My github
</div>
</div>
</section>
<section id="content">
</section>
<section id="footer">
<div class="details">
Bambi(Ofer) Haber | Borochov 35, Tel-Aviv, Israel | +972-52-3712465
</div>
</section>
<script id="positionTemplate" type="text/template">
<div class="cvDescription">
<div class="logo">
<a href="<%= link %>" target="_blank">
<div class="companyLogo <%= image %>"></div>
</a>
</div>
<section class="position">
<div class="details">
<div class="companyName"><%= companyName %></div>
<div class="roleTimeRange">
<div class="role"><%= role %></div>
<div class="timeRange"><%= timeRange %></div>
</div>
<div class="description"><%= description %></div>
</div>
</section>
</div>
</script>
<script id="aboutMeTemplate" type="text/template">
<div class="aboutMeContainer">
<div class="left">
<img src="assets/images/sing-small.jpg"/>
</div>
<div class="right"><< Hey,</br> Thats me :)<br/>
Welcome to my website, it contains some stuff like:<br/>
* Places ive worked for/with
* Some links to code
* This lovley photo of me playing in a rehearsal, i play synth for a band called
<a href="www.turdpartyplugins.com">turd party plugins</a>, and music is another passion besides my software/web development thing.<br/>
I have been studying drums for the past 3 years and love good music in general ["pop", "rock", "jazz"] <-- yes it was an array.<br/>
Have fun looking around..
</div>
</div>
</script>
</body>
</html>