-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
665 lines (516 loc) · 20.2 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MWermuth - Software Development</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/m-styles.min.css" rel="stylesheet">
<link href="css/m-forms.min.css" rel="stylesheet">
<link href="css/m-buttons.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="ico/apple-touch-icon-57-precomposed.png">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30482227-1']);
_gaq.push(['_setDomainName', 'mwermuth.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body id="home" data-spy="scroll" data-target=".navbar">
<!-- HEADER CONTAINER -->
<!-- CONTENT -->
<div class="row header">
<!-- NAV -->
<nav class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar m-btn blue" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<h1 class="brand">
<a href="index.html">
<img src="img/mwermuthlogo.png" alt="">
</a>
</h1>
<div class="nav-collapse">
<ul class="nav pull-right">
<li><a href="#home" class="anchorLink">Home</a></li>
<li><a href="#about" class="anchorLink">Hire me</a></li>
<li><a href="#portfolio" class="anchorLink">Portfolio</a></li>
<li><a href="#contact" class="anchorLink">Contact</a></li>
</ul>
</div>
</div>
</div>
</nav>
</div>
<!-- Start Callout -->
<div class="full callout">
<div class="container">
<div class="row">
<div class="span12 companycallout">
<h1><img id="flag" src="img/mw_plain.png" alt="MW"></h1>
<div id="hey" class="fade-in one">
<p>Hey there. I am Marcus.</p>
</div>
<div id="hey" class="fade-in two">
<p>And I solve problems with software.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Callout -->
<!-- Start About -->
<div class="row-fluid section" id="about">
<div class="container">
<div class="explain">
<h2>Hire Me</h2>
<p class="intro">I am currently available for iOS, Rails or any other problem-solving task.</p>
<div class="row-fluid">
<div id="offer" class="span12">
<h3>What I can offer.</h3>
<p>
<ul>
<li>iOS/Android App Development with or without Backend solutions</li>
<li>Ruby on Rails Web Applications</li>
<li>E-Commerce Web Applications</li>
<li>Standard Websites</li>
<li>Standard Programming Tasks (C, Ruby, Python)</li>
</ul>
</p>
</div>
<!-- <p>
<a class="btn btn-large actionbtn" href="#">Our Services</a>
</p> -->
</div>
</div>
</div>
</div>
<!-- PORTFOLIO -->
<div class="row section" id="portfolio">
<div class="container">
<h2>portfolio</h2>
<p class="intro">Some of my past work projects, with different clients. </p>
<!-- Start Portfolio Navigation -->
<nav class="primary m-btn-group toggle-buttons clearfix">
<ul>
<li><a href="#" class="m-btn selected" data-filter="*">All</a></li>
<li><a href="#" class="m-btn" data-filter=".web">Web Development</a></li>
<li><a href="#" class="m-btn" data-filter=".ill">Software Development</a></li>
</ul>
</nav>
<!-- START Portfolio items -->
<section class="main clearfix">
<div class="portfolio">
<figure class="entry ill">
<a class="show_hide" id="zooma" >
<img src="img/zooma1.png" alt="">
</a>
</figure>
<figure class="entry ill">
<a class="show_hide" id="kit">
<img src="img/kitd2.png" alt="">
</a>
</figure>
<figure class="entry web">
<a class="show_hide" id="hsv">
<img src="img/hsv1.png" alt="">
</a>
</figure>
<figure class="entry ill">
<a class="show_hide" id="morbus">
<img src="img/morbus.png" alt="">
</a>
</figure>
<figure class="entry ill">
<a class="show_hide" id="nextr">
<img src="img/nextr.png" alt="">
</a>
</figure>
<div class="avgrund-cover"></div>
</div>
</section>
<div class="slidingDiv" id="portodiv">
<div id="kitcontent" class="hide">
<h3 style="text-align:center;">Kit digital in-House iPad Application</h3>
<div class="row-fluid">
<div class="span12">
<div id="myCarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"><img src="img/kitd/kit1.png" alt=""></div>
<div class="item"><img src="img/kitd/kit2.png" alt=""></div>
<div class="item"><img src="img/kitd/kit3.png" alt=""></div>
<div class="item"><img src="img/kitd/kit4.png" alt=""></div>
<div class="item"><iframe src="http://player.vimeo.com/video/38232621?title=0&byline=0&portrait=0&color=ffffff" width="790" height="445" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen=""></iframe></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h3>About:</h3>
<p>Interface design and development for an iPad app for the company kit digital. The app will be used on trade shows and events to explain the companies operation methods to interested customers. A lead generation form helps to gather customer informations.</p>
</div>
<div class="span4">
<h3>Tags:</h3>
<p>
Objective-C, iOS-SDK, App-Distribution
</p>
</div>
<div class="span4">
<h3></h3>
<h4>Client:</h4>
<a href="http://www.kitd.com/">kit digital</a>
<h4>Design:</h4>
<a href="http://http://www.oberhaeuser.info/">oberhaeuser.info</a>
<h4>Development:</h4>
<a href="http://www.mwermuth.com/">MWermuth</a>
</div>
</div>
</div>
<div id="zoomacontent" class="hide">
<h3 style="text-align:center;">Club Zooma iPhone & Android Application</h3>
<div class="row-fluid">
<div class="span12 ">
<div id="zoomacarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"><img src="img/zooma/zooma1.png" alt=""></div>
<div class="item"><img src="img/zooma/zooma2.png" alt=""></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#zoomacarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#zoomacarousel" data-slide="next">›</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h3>About:</h3>
<p>Development of an iPhone & Android Application. It is used as a digital flyer, delivering news and photos for upcoming events. Supported with Push Notifications it works as a new way of reaching out to possible guests.</p>
</div>
<div class="span4">
<h3>Tags:</h3>
<p>
Objective-C, iOS-SDK, Android-SDK, Push-Notifications
</p>
</div>
<div class="span4">
<h3></h3>
<h4>Client:</h4>
<a href="http://www.club-zooma.de/">Club Zooma</a>
<h4>Design:</h4>
<a href="http://http://www.visual-works.org/">rixon grfx</a>
<h4>Development:</h4>
<a href="http://www.mwermuth.com/">MWermuth</a>
</div>
</div>
</div>
<div id="hsvcontent" class="hide">
<h3 style="text-align:center;">HSV - Facebook Application</h3>
<div class="row-fluid">
<div class="span12 ">
<div id="hsvcarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"><img src="img/hsv/hsv1.png" alt=""></div>
<div class="item"><img src="img/hsv/hsv2.png" alt=""></div>
<div class="item"><img src="img/hsv/hsv3.png" alt=""></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#hsvcarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#hsvcarousel" data-slide="next">›</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h3>About:</h3>
<p>Building of a Facebook Application to support the anniversary of the football team HSV. Users could upload their Picture and integrate a banner for showing their support.</p>
</div>
<div class="span4">
<h3>Tags:</h3>
<p>
HTML, PHP, Facebook-SDK
</p>
</div>
<div class="span4">
<h3></h3>
<h4>Client:</h4>
<a href="http://www.hsv.de/">Hamburger Sport-Verein</a>
<h4>Design:</h4>
<a href="http://http://www.mutabor.de/">Mutabor Design GmbH</a>
<h4>Development:</h4>
<a href="http://www.mwermuth.com/">MWermuth</a>
</div>
</div>
</div>
<div id="morbuscontent" class="hide">
<h3 style="text-align:center;">Morbus iPhone Application</h3>
<div class="row-fluid">
<div class="span12 ">
<div id="morbuscarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"><img src="img/morbus/morbus1.png" alt=""></div>
<div class="item"><img src="img/morbus/morbus2.png" alt=""></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#morbuscarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#morbuscarousel" data-slide="next">›</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h3>About:</h3>
<p>Development of an iPhone Application. It is used as a digital , delivering information around different diseases. Usergroups are students, doctors and medical staff in hospitals. It supports live updates of the content,
including saving it for offline use..</p>
</div>
<div class="span4">
<h3>Tags:</h3>
<p>
Objective-C, iOS-SDK, Parse-SDK
</p>
</div>
<div class="span4">
<h3></h3>
<h4>Client:</h4>
<a href="http://www.insidemed.de/">insidemed</a>
<h4>Design:</h4>
<a href="http://www.insidemed.de/">insidemed</a>
<h4>Development:</h4>
<a href="http://www.mwermuth.com/">MWermuth</a>
</div>
</div>
</div>
<div id="nextrcontent" class="hide">
<h3 style="text-align:center;">nextr iPhone Application</h3>
<div class="row-fluid">
<div class="span12 ">
<div id="nextrcarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="item active"><img src="img/nextr/nextr1.png" alt=""></div>
<div class="item"><img src="img/nextr/nextr2.png" alt=""></div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#nextrcarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#nextrcarousel" data-slide="next">›</a>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h3>About:</h3>
<p>Nextr is an iPhone app that guides you through all public transportation systems in Germany. Public transportation guidance rethought. Available at the App Store.</p>
<a href="http://itunes.apple.com/de/app/nextr/id628098698?l=de&ls=1&mt=8">Download now</a>
</div>
<div class="span4">
<h3>Tags:</h3>
<p>
Objective-C, iOS-SDK, HTML5, CSS, JS
</p>
</div>
<div class="span4">
<h3></h3>
<h4>Design:</h4>
<a href="http://http://www.oberhaeuser.info/">oberhaeuser.info</a>
<h4>Development:</h4>
<a href="http://www.mwermuth.com/">MWermuth</a>
<h4>Website:</h4>
<a href="http://www.nextr.info/">nextr</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End PORTFOLIO -->
<!-- CONTACT -->
<div class="row section" id="contact">
<!-- MAP ############################################### -->
<div>
<div class="container">
<h2>Contact</h2>
<p class="intro">Interested? Got work to do? Get in contact with me.</p>
</div>
<div class="container hidden-phone" id="map"></img> </div> <!-- /container -->
</div> <!-- /contact -->
<!-- /MAP ############################################### -->
<div id="form">
<div class="container">
<div class="row">
<div class="span8" >
<h1>Current Workload</h1>
<div class="workload">
<div class="progress progress-striped active">
<div class="bar" style="width: 50%;"></div>
</div>
<h2>
<a href="mailto:[email protected]">HIRE ME</a><br>
</h2>
</div>
</div>
<div class="span3 offset1" >
<h3>Get in touch with me.</h3>
<p>
Email: <a href="mailto:[email protected]">[email protected]</a><br>
Web: <a href="http://mwermuth.com">mwermuth.com</a><br>
Github: <a href="http://github.com/mwermuth">mwermuth</a><br>
Twitter: <a href="www.twitter.com/mwermuth">@mwermuth</a><br>
Skype: marcus.wermuth
<br/><br/>
Marcus Wermuth<br/>
Schafackerweg 31<br/>
08538 Weischlitz<br/>
<br/>
[email protected]<br/>
+49 (0)17620474244
</p>
</div>
</div>
</div> <!-- /container -->
</div> <!-- /form -->
<!-- END CONTACT FORM -->
</div> <!-- /container -->
<script src="js/jquery.js"></script>
<script src="js/jquery.mousewheel-3.0.4.pack.js"></script>
<script src="js/jquery.gmap.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="js/iso-custom.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/bootstrap-scrollspy.js"></script>
<script src="js/anchor.js" type="text/javascript"></script>
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap-carousel.js"></script>
<!-- MAP -->
<script type="text/javascript">
$(document).ready(function(){
var active = "zooma";
$("#map").gMap({ controls: false,
scrollwheel: false,
draggable: false,
markers: [{ latitude: 50.443461,
longitude: 12.072377,
icon: { image: "img/pin.png",
iconsize: [32, 47],
iconanchor: [32,47],
infowindowanchor: [12, 0] } }
],
icon: { image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
infowindowanchor: [12, 0] },
latitude: 50.443461,
longitude: 12.072377,
zoom: 4, });
$(".slidingDiv").hide();
$(".show_hide").show();
$(".slidingDiv").slideToggle();
$("#nextrcontent").show();
$('.show_hide').click(function(){
if(jQuery(this).attr("id") == "close"){
$(".slidingDiv").slideToggle();
$("#kitcontent").hide();
$("#zoomacontent").hide();
$("#hsvcontent").hide();
$("#morbuscontent").hide();
$("#nextrcontent").hide();
}
else if($(".slidingDiv").is(':visible') && jQuery(this).attr("id") != active){
if(jQuery(this).attr("id") == "kit"){
$("#kitcontent").show();
$("#zoomacontent").hide();
$("#hsvcontent").hide();
$("#morbuscontent").hide();
$("#nextrcontent").hide();
}
else if(jQuery(this).attr("id") == "zooma"){
$("#kitcontent").hide();
$("#zoomacontent").show();
$("#hsvcontent").hide();
$("#morbuscontent").hide();
$("#nextrcontent").hide();
}
else if(jQuery(this).attr("id") == "hsv"){
$("#kitcontent").hide();
$("#zoomacontent").hide();
$("#hsvcontent").show();
$("#morbuscontent").hide();
$("#nextrcontent").hide();
}
else if(jQuery(this).attr("id") == "morbus"){
$("#kitcontent").hide();
$("#zoomacontent").hide();
$("#hsvcontent").hide();
$("#morbuscontent").show();
$("#nextrcontent").hide();
}
else if(jQuery(this).attr("id") == "nextr"){
$("#kitcontent").hide();
$("#zoomacontent").hide();
$("#hsvcontent").hide();
$("#morbuscontent").hide();
$("#nextrcontent").show();
}
}
else if($(".slidingDiv").is(':visible') && ((jQuery(this).attr("id") == active) || (active == "close"))){
$(".slidingDiv").slideToggle();
$("#kitcontent").hide();
$("#zoomacontent").hide();
$("#hsvcontent").hide();
$("#morbuscontent").hide();
$("#nextrcontent").hide();
}
if($(".slidingDiv").is(':hidden')){
$(".slidingDiv").slideToggle();
if(jQuery(this).attr("id") == "kit"){
$("#kitcontent").show();
}
else if(jQuery(this).attr("id") == "zooma"){
$("#zoomacontent").show();
}
else if(jQuery(this).attr("id") == "hsv"){
$("#hsvcontent").show();
}
else if(jQuery(this).attr("id") == "morbus"){
$("#morbuscontent").show();
}
else if(jQuery(this).attr("id") == "nextr"){
$("#nextrcontent").show();
}
}
active = jQuery(this).attr("id");
});
});
</script>
</body>
</html>