-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
845 lines (741 loc) · 32.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
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
<!--
header.html
Copyright 2016 alex <alex@goophy>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="icon" type="image/png" href="assets/images/tiny-logo-fav-6.png" />
<!-- Site Properties -->
<title>Independent Computer Science Laboratory</title>
<link rel="stylesheet" type="text/css" href="semantic/dist/semantic.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/reset.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/site.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/container.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/grid.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/header.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/image.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/menu.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/divider.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/dropdown.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/segment.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/button.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/list.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/icon.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/sidebar.css">
<link rel="stylesheet" type="text/css" href="semantic/dist/components/transition.css">
<link rel="stylesheet" type="text/css" href="assets/library/das-site.css">
<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-82620816-1', 'auto');
ga('send', 'pageview');
</script>
<script src="assets/library/jquery.min.js"></script>
<script src="semantic/dist/components/visibility.js"></script>
<script src="semantic/dist/components/sidebar.js"></script>
<script src="semantic/dist/components/transition.js"></script>
<script src="assets/library/das-site.js"></script>
</head>
<body>
<!-- Following Menu -->
<nav class="ui large top fixed hidden menu">
<div class="ui container">
<div class="right menu">
<a href="#ourwork" class="item">Our work</a>
<a href="#ourteam" class="item">Our team</a>
<a href="hireus.html" class="item">Hire us!</a>
</div>
</div>
</nav>
<!-- Page Contents -->
<div class="pusher">
<!-- header area -->
<div class="ui secondary inverted vertical masthead center stackable aligned segment">
<div class="ui container">
<nav class="ui large secondary inverted poiting menu">
<!-- lh menu items -->
<a class="item">
<div>
<img class="ui small image" src="assets/images/logo-1.png">
<h3>icslab.eu</h3>
</div>
</a>
<!--rh menu items-->
<div class="right item">
<a href="#ourwork" class="item">Our work</a>
<a href="#ourteam" class="item">Our team</a>
<button class="ui inverted teal button"
onclick="location.href='hireus.html';">
Hire us!
</button>
</div>
</nav>
</div>
<!-- main title and inspiration words area -->
<div class="ui text container center aligned">
<h1 class="ui secondary inverted header stackable">
ICS Laboratory
</h1>
<h2>Independent Computer Science Laboratory</h2>
</div>
</div><!-- (end header) -->
<!-- Navigation sections -->
<!-- ******************* -->
<!-- OURWORK section -->
<section id="ourwork">
<div class="ui container">
<!-- section title -->
<div class="ui center aligned basic segment">
<div class="ui text container">
<h1>Our Work</h1>
</div>
</div>
<h3 class="ui section divider">
<div class="ui teal large label">
<!--img src="/images/avatar/small/veronika.jpg"-->
OUR MISSION
</div>
</h3>
<div class="ui center aligned container" style="margin-bottom: 0px">
<div class="ui text container">
<h2 style="-webkit-font-smoothing: antialiased;font-weight: lighter; font-size:25px;
font-family: thinfont;">
<span style="color:teal">Clean</span>
.
<span style="color:teal">Green</span>
.
<span style="color:teal">Focused</span>
.
<span style="color:teal">Innovative</span>
.
<span style="color:teal">Engineering</span>
<!--
<span style="color:deepskyblue">Clean</span>
.
<span style="color:limegreen">Green</span>
.
<span style="color:orangered">Focused</span>
.
<span style="color:indigo">Innovative</span>
.
<span style="color:steelblue">Engineering</span>
-->
</h2>
</div>
</div>
<div class="ui hidden divider"></div>
<div class="ui left aligent text container">
The icslab.eu team focuses its energy on being creative and innovative in its field
while harnessing and embracing new technologies and producing the smallest footprints on the environment.
We like to hear the words: math, physics, AI, intelligent hardware and sensors, hybrid.
</div>
<!-- PARTNERS content -->
<h4 class="ui horizontal divider header">
... AND CONTRIBUTIONS
</h4>
<div class="ui hidden divider"></div>
<div class="ui middle aligned grid">
<div class="five wide column">
<a href="http://www.cambioscience.com" target="_blank">
<img class="ui centered small image" src="/images/partners/cambioscience.png">
</a>
</div>
<div class="six wide column">
<a href="http://juxt.pro" target="_blank">
<img class="ui centered tiny image" src="/images/partners/juxt.png">
</a>
</div>
<div class="five wide column">
<a href="http://intrinsicagility.com.au/" target="_blank">
<img class="ui centered tiny image" src="/images/partners/intrinic.jpg">
</a>
</div>
</div>
<!-- END PARTNERS content -->
<!-- EVENTS content-->
<h3 class="ui section divider">
<div class="ui purple large label">
EVENTS
</div>
</h3>
<div class="ui hidden divider"></div>
<!-- Bucharest Clojure Meetup -->
<div class="ui grid">
<div class="right aligned four wide column">
<div class="ui small bordered image">
<img class="ui small image visible content" src="images/posts/meetup/softbinator/alex-talk1.jpg">
</div>
</div>
<div class="left aligned ten wide column">
<div class="ui card lilly">
<!-- description -->
<div class="content">
<div class="header">
<img class="ui mini image floated left" src="images/posts/meetup/clj-meetup.png">
<h2>Bucharest Clojure Meetup</h2>
</div>
<div class="meta">
<span class="category">Meetup</span>
</div>
<div class="description">
<p>This meetup is for anyone willing to learn and to share some knowledge about Clojure language (and friends: ClojureScript, Datomic) and its related tools and frameworks. </p>
<p>The members of this group are functional programming enthusiasts who share the same passion of designing and writing clean, efficient and focused software solutions using cool principles of mathematics and lambda calculus. </p>
<p>Whether you are a beginner or an expert in functional programming, we would be happy to meet you and to share interesting ideas. Together, we would like to build a powerful community that will enable us to grow our technical skills and to open our minds. Join us!</p>
</div>
</div>
<div class="extra content">
<div class="right floated author">
<!-- external links -->
<button class="ui disabled facebook icon button">
<i class="large facebook icon"></i>
</button>
<button class="ui primary icon button"
onclick="window.open('https://www.meetup.com/Bucharest-Clojure-Meetup/','_blank');">
<i class="large external icon"></i>
</button>
</div>
</div>
</a>
</div>
</div>
</div>
<!--</div> -->
<!-- into lambda hackathon -->
<!-- <div class="ui secondary vertical center aligned segment"> -->
<div class="ui grid">
<div class="right aligned four wide column">
<div class="ui small bordered image">
<img class="ui small image visible content" src="images/into-lambda-hack-small-logo-b.png">
</div>
</div>
<div class="left aligned ten wide column">
<div class="ui card lilly">
<!-- description -->
<div class="content">
<div class="header">
<img class="ui mini image floated left" src="images/technologies/clj.png">
<h2>into lambda hackathon</h2>
</div>
<div class="meta">
<span class="category">Clojure conference and hackathon</span>
</div>
<div class="description">
<p>into-lambda is a new challenging event in the functional programming environment in Romania.</p>
<p>The journey starts with some enlightening talks given by our experts which trigger your intuition and curiosity for the hackathon that will follow. Grouped in ad-hoc organized teams, you will then join the venture of designing and implementing a new API while improving your Clojure skills and having fun.</p>
<p>Join us!</p>
</div>
</div>
<div class="extra content">
<div class="right floated author">
<!-- external links -->
<button class="ui disabled facebook icon button">
<i class="large facebook icon"></i>
</button>
<button class="ui primary icon button"
onclick="window.open('/intolambda/index.html','_blank');">
<i class="large external icon"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<!--</div> -->
<h3 class="ui section left aligned divider">
<a class="ui teal large left aligned label">
RECENT ENDEVOURS
</a>
</h3>
<div class="ui hidden divider"></div>
<!-- RECENT ENDEVOURS content -->
<!-- :KAWASE APP -->
<div class="ui grid">
<div class="right aligned four wide column">
<!-- kawase slide show -->
<div class="ui slide masked reveal small bordered image">
<img class="ui small image visible content" src="images/kawase/full.png">
<div class="ui slide masked reveal small bordered image hidden content">
<img class="ui small image visible content" src="images/kawase/search.png">
<img class="ui small image hidden content" src="images/kawase/email.png">
</div>
</div>
</div>
<div class="left aligned ten wide column">
<div class="ui card lilly">
<!-- kawase description -->
<div class="content">
<div class="header">
<img class="ui mini image floated left" src="">
<h2>Kawase</h2>
</div>
<div class="meta">
<span class="category">Crypto-currency arbitrage analyser</span>
</div>
<div class="description">
<p>Kawase is a Clojure standalone application that runs on Unix/Windows/Mac operating systems. It gathers bid and ask price for all the crypto currency pairs listed at several stock exchanges and computes arbitrages.</p>
<p>Main functionalities also includ search currency pair options and automated notification system.</p>
</div>
</div>
<div class="extra content">
<div class="right floated author">
<!-- external links -->
<button class="ui facebook icon button disabled"
onclick="window.open('https://www.facebook.com/,'_blank');">
<i class="large facebook icon"></i>
</button>
<button class="ui primary icon button disabled">
<i class="large external icon"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- :CODO APP: https://play.google.com/store/apps/details?id=eu.icslab.gherega.alex.codo -->
<!-- <div class="ui secondary vertical center aligned segment"> -->
<div class="ui grid">
<div class="right aligned four wide column">
<!-- codo slide show -->
<div class="ui slide masked reveal small bordered image">
<img class="ui small image visible content" src="images/codo-forever-in-love.png">
<div class="ui slide masked reveal small bordered image hidden content">
<img class="ui small image visible content" src="images/codo-checked-items.png">
<img class="ui small image hidden content" src="images/codo-todo-details.png">
</div>
</div>
</div>
<div class="left aligned ten wide column">
<div class="ui card lilly">
<!-- moneyspenk description -->
<div class="content">
<div class="header">
<img class="ui mini image floated left" src="images/codo-logo.png">
<h2>Colored todo</h2>
</div>
<div class="meta">
<span class="category">A brain training exercise and a self-organizing tool</span>
</div>
<div class="description">
<p>Even if you are a person who just enjoys playing with teasers or one of those persons
dependent on self-organizing via todo-lists this app covers you all.
The Codo app is a cool and fun way to train your associative memory while keeping you in check with your
todo-item tasks.
The most important thing is to allow yourself to experiment and play with it. Trust me, you can't break it! One screen, some visual widgets and the basic touchscreen actions: touch & long touch.</p>
<p>Happy braining :)</p>
</div>
</div>
<div class="extra content">
<div class="right floated author">
<!-- external links -->
<button class="ui facebook icon button disabled"
onclick="window.open('https://www.facebook.com/MoneySpenk/','_blank');">
<i class="large facebook icon"></i>
</button>
<button class="ui primary android icon button"
onclick="window.open('https://play.google.com/store/apps/details?id=eu.icslab.gherega.alex.codo','_blank');">
<i class="large android icon"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<!-- :MONEY-SPENk APP: https://play.google.com/store/apps/details?id=com.harbinger.expressive.espendingtracker -->
<!-- <div class="ui secondary vertical center aligned segment"> -->
<div class="ui grid">
<div class="right aligned four wide column">
<!-- moneyspenk slide show -->
<div class="ui slide masked reveal small bordered image">
<img class="ui small image visible content" src="images/moneyspenk-spendings-graph.png">
<div class="ui slide masked reveal small bordered image hidden content">
<img class="ui small image visible content" src="images/moneyspenk-main.png">
<img class="ui small image hidden content" src="images/moneyspenk-spendings.png">
</div>
</div>
</div>
<div class="left aligned ten wide column">
<div class="ui card lilly">
<!-- moneyspenk description -->
<div class="content">
<div class="header">
<img class="ui mini image floated left" src="images/moneyspenk-logo.png">
<h2>Money Spenk</h2>
</div>
<div class="meta">
<span class="category">Receipt scanner application to monitor your expenses</span>
</div>
<div class="description">
<p>Money Spenk is a fun app for scanning your receipts and thus help you easily monitor your expenses, all within a juicy interface with awesome features.</p>
</div>
</div>
<div class="extra content">
<div class="right floated author">
<!-- external links -->
<button class="ui facebook icon button"
onclick="window.open('https://www.facebook.com/MoneySpenk/','_blank');">
<i class="large facebook icon"></i>
</button>
<button class="ui primary android icon button"
onclick="window.open('https://play.google.com/store/apps/details?id=com.harbinger.expressive.espendingtracker','_blank');">
<i class="large android icon"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<!-- :PIE-CARE APP -->
<!-- <div class="ui secondary vertical center aligned segment"> -->
<div class="ui grid">
<div class="right aligned four wide column">
<!-- piecare slide show -->
<div class="ui slide masked reveal small bordered image">
<img class="ui small image visible content" src="images/piecare-call.png">
<div class="ui slide masked reveal small image hidden content">
<img class="ui small image visible content" src="images/piecare-main.png">
<img class="ui small image hidden content" src="images/piecare-register.png">
</div>
</div>
</div>
<div class="left aligned ten wide column">
<div class="ui card lilly">
<!-- piecare description -->
<div class="content">
<div class="header">
<img class="ui mini image floated left" src="images/piecare-logo-refresh.png">
<h2>Pie Care</h2>
</div>
<div class="meta">
<span class="category">E/M-health application</span>
</div>
<div class="description">
<p>Demo of interconnecting technologies to respond to a simple need in e-Health.
We've used a WebRTC based API for streaming video and audio signal, applied some cool strategies and we've researched the tech stack needed for the final result.
There are two dedicated app for the patient and the health care taker - we've affectionately called them toddler and nanny. All backed by a cool Clojure based server.
</p>
</div>
</div>
<div class="extra content">
<div class="right floated author">
<!-- external links -->
<button class="ui disabled facebook icon button"
onclick="window.open('https://www.facebook.com/MoneySpenk/','_blank');">
<i class="large facebook icon"></i>
</button>
<button class="ui disabled primary android icon button"
onclick="window.open('https://play.google.com/store/apps/details?id=com.harbinger.expressive.espendingtracker','_blank');">
<i class="large android icon"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<div class="ui hidden divider"></div>
</section><!-- (end ouwork) -->
<!-- OURTEAM section -->
<section id="ourteam">
<div class="ui container" style="width:100%">
<!-- section title -->
<div class="ui center aligned secondary inverted segment" style="margin-bottom: 0px">
<div class="ui text container">
<h1>Our Team</h1>
</div>
<!-- team members-->
<div class="ui two column middle aligned grid">
<!-- column area -->
<div class="center aligned column">
<div class="column">
<div class="ui image">
<img class="ui tiny circular image" src="images/0a53-alex-gherega_424242.jpg"/>
</div>
</div>
<div class="center aligned column">
<h3>Alexandru Gherega</h3>
</div>
<div class="middle aligned column">
<button class="ui circular tiny facebook icon button"
onclick="location.href='https://www.facebook.com/alex.gherega';">
<i class="facebook icon"></i>
</button>
<button class="ui circular tiny linkedin icon button"
onclick="location.href='https://www.linkedin.com/in/alexandru-gherega-73340719';">
<i class="linkedin icon"></i>
</button>
<button class="ui circular tiny skype icon button"
onclick="location.href='location.href='skype:alex.gherega?call';">
<i class="skype icon"></i>
</button>
<button class="ui circular tiny github icon button"
onclick="location.href='https://github.com/alex-gherega';">
<i class="github icon"></i>
</button>
</div>
</div>
<!-- column area -->
<div class="center aligned column">
<div class="center aligned column">
<div class="ui image">
<img class="ui tiny circular image" src="images/0a53-georgiana_4242.png"/>
</div>
</div>
<div class="center aligned column">
<h3>Georgiana Mania</h3>
</div>
<div class="middle aligned column">
<button class="ui circular tiny facebook icon button"
onclick="location.href='https://www.facebook.com/georgiana.mania';">
<i class="facebook icon"></i>
</button>
<button class="ui circular tiny linkedin icon button"
onclick="location.href='https://www.linkedin.com/in/georgiana-mania-745a175a';">
<i class="linkedin icon"></i>
</button>
<button class="ui circular tiny skype icon button"
onclick="location.href='location.href='skype:georgi_mania?call';">
<i class="skype icon"></i>
</button>
<button class="ui circular tiny github icon button"
onclick="location.href='https://github.com/georgi-mania';">
<i class="github icon"></i>
</button>
</div>
</div>
</div>
<h4 class="ui horizontal divider header">
<i class="plug icon"></i>
</h4>
<!-- team contacts -->
<div>
<button class="ui email tiny icon button"
title="mailto:icslabcrew@gmail.com"
onclick="location.href='mailto:icslabcrew@gmail.com';">
<i class="mail icon"></i>
Email
</button>
<button class="ui facebook tiny icon button"
title="Facebook page"
onclick="location.href='http://www.facebook.com/icslab.eu';">
<i class="facebook icon"></i>
Facebook
</button>
<button class="ui skype tiny icon button"
title="Skype call"
onclick="location.href='skype:georgi_mania?call';">
<i class="skype icon"></i>
Skype
</button>
<button class="ui slack tiny icon button"
title="Slack channel"
onclick="location.href='/slack';">
<img src="images/slack.png" width="10px" height="auto"></image>
Slack
</button>
<button class="ui phone tiny icon button"
title="Call +40746315293"
onclick="location.href='tel:+40746315293';">
<i class="phone icon"></i>
Phone
</button>
<button class="ui github tiny icon button"
title="https://github.com/icslabspace"
onclick="location.href='https://github.com/icslabspace';">
<i class="github icon"></i>
GitHub
</button>
</div>
</div>
<!-- team blog -->
<div class="ui secondary orange vertical center aligned segment"
style="padding: 3rem 0 3rem 0;
background-image: url(assets/images/blog-section-bg6.png);
background-repeat: no-repeat;
height:auto;
width:auto;
background-position: left top;">
<div class="ui text container">
<!--
<button class="ui inverted teal button"
onclick="location.href='blog';">
<img class="ui tiny image" src="assets/images/blogcast-2.png">
<h2 style="color:#24123d;">link</h2>
</button>
-->
<button class="ui inverted teal button"
onclick="location.href='blog';"
>
<img class="ui tiny image" src="assets/images/blogcast.png">
<!--<h2 style="color:#24123d;">link</h2>-->
</button>
<!--
<div class="ui left aligned image">
<div class="ui three column middle aligned relaxed grid">
<div class="right aligned column" style="background:white;">
<img class="ui medium rounded image" src="assets/images/blog-icon.png"/>
</div>
<div class="left aligned column">
<h2>Read our blogcast</h2>
</div>
<div class="center aligned column">
<button class="ui inverted teal button"
onclick="location.href='blog';">
<img class="ui tiny image" src="assets/images/blogcast.png">
<h2 style="color:#24123d;">link</h2>
</button>
</div>
</div>
</div>
-->
<!--<h2><a href="http://blog.icslab.eu">Blink</a></h2>-->
</div>
</div>
<!-- location -->
<div class="ui center aligned container" style="width:100%;">
<div class="ui center aligned basic red segment">
<h3>Our Office</h3>
</div>
<div class="ui center aligned image">
<div class="ui two column middle aligned relaxed grid">
<div class="right aligned column" style="background:white;">
<img class="ui medium image" src="images/team-location.png"/>
</div>
<div class="left aligned column">
<h3>Bucharest, RO</h3>
</div>
</div>
</div>
</div>
</div>
</section><!-- (end ourteam) -->
<!-- TECHNOLOGIES section -->
<section id="technologies" style="width:100%">
<div class="ui container" style="width:100%">
<!-- section title -->
<div class="ui center aligned secondary segment">
<div class="ui mini images">
<img class="ui image" src="images/technologies/clojure.png">
<img class="ui image" src="images/technologies/haskell.png">
<img class="ui image" src="images/technologies/python.png">
<img class="ui image" src="images/technologies/java.png">
<img class="ui image" src="images/technologies/android.png">
<!--<img class="ui image" src="images/technologies/js.png">-->
<img class="ui image" src="images/technologies/css.png">
</div>
</div>
</div>
</section>
<!-- FOOTER section -->
<div class="ui inverted vertical footer secondary segment">
<div class="ui container">
<div class="ui inverted divided equal height grid">
<!-- about -->
<div class="three wide column">
<h4 class="ui inverted header">Sitemap</h4>
<div class="ui inverted link list">
<a href="#ourwork" class="item">Our work</a>
<a href="#ourteam" class="item">Our team</a>
<a href="/blog/index.html" class="item">Our blog</a>
<!-- <a href="hireus.html" class="item">Hire us!</a> -->
</div>
</div>
<!-- contacts -->
<div class="five wide column">
<h4 class="ui inverted header">Contact us</h4>
<div class="ui inverted link list"> <!-- link list -->
<div>
<span>
<i class="mail icon"></i>
<a class="ui item"
href="mailto:icslabcrew@gmail.com"
target="_blank">icslabcrew@gmail.com</a>
</span>
</div>
<div>
<span>
<i class="facebook icon"></i>
<a class="ui item"
href="http://www.facebook.com/icslab.eu"
target="_blank">/icslab.eu</a>
</span>
</div>
<div>
<span>
<i class="skype icon"></i>
<a class="ui item"
href="skype:georgi_mania?call"
target="_blank">icslab crew</a>
</span>
</div>
<div>
<span>
<i class="slack icon"></i>
<a class="ui item"
href="/slack"
target="_blank">slack channel</a>
</span>
</div>
<div>
<span>
<i class="phone icon"></i>
<a class="ui item"
href="tel:+40746315293"
target="_blank">+40746315293</a>
</span>
</div>
</div>
</div>
<!--message -->
<div class="five wide column">
<!-- <h4 class="ui inverted header">Footer Header</h4>-->
<p>Independent Computer Scientists' Laboratory</p>
</div>
</div>
</div>
<div class="ui grid container">
<div class="thirteen wide centered column ">
<div class="ui inverted link list">
<span>
<img src="images/handshake.png" width="20px" height="auto">
<a class="item" href="/hireus.html">Hire us!</a>
</span>
</div>
</div>
</div>
<!-- copyright -->
<div class="ui container">
<br/>
<i class="copyright icon"></i>2016 Independent Computer Science Laboratory
</div>
</div><!-- (end footer) -->
</div><!-- (end pusher) -->
</body>
</html>
<!--
BG1: #24123d
FG1: #d43e57
FG2: #53e1be
-->