-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_us.html
90 lines (69 loc) · 4.15 KB
/
about_us.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
---
layout: default
image: /img/about_us/about_us_main.jpg
description: "Про лабораторію Lampa"
permalink: /about/
---
<header>
{% include nav.html %}
</header>
<section id="header-pages-blog">
<div class="container" id="header-pages-blog-title">
<h2 class="page-title">Про лабораторію</h2>
</div> <!-- container -->
</section> <!-- hero -->
{% include social.html %}
<div class="container" id="separator-pages-top"></div>
<!-- ==== About Lampa Lab ==== -->
<section id="lampa-about">
<div class="container" id="separator-blog"></div>
<div class="container">
<br>
<h3> Відкрита лабораторія електроніки Лампа </h3>
<br><br>
<div class="row">
<div style="font-size: 0.95em;" class="col-md-6 col-sm-6">
<p>Ми — відкрита лабораторія створена у <a target="_blank" href="https://kpi.ua/"><strong>Київському Політехнічному Інституті імені Ігоря Сікорського</strong></a> на базі кафедри <a target="_blank" href="http://keoa.kpi.ua/"><strong>Конструювання електронно-обчислювальної апаратури</strong></a></p><br>
<p>Відвідування лабораторії і користування обладнанням безкоштовне!</p><br>
<p>Лабораторія працює в напрямках освіти і прототипування. На нашому обладнанні ви можете вивчати всі напрямки сучасної електроніки з використанням онлайн курсів та відео лекцій. Також ви маєте можливість користуватися приладами лаби для створення прототипів власних розробок.</p><br>
<p>Щоб скористатися обладнанням — оберіть необхідні прилади зі списку, прийдіть в години роботи лабораторії та попросіть лаборанта надати вам необхідне обладнання. По завершенню роботи повертаєте прилади лаборантові. Просимо з розумінням поставитися, якщо лаборант попросить ваші контактні дані для звітності про відвідувачів.</p><br>
</div> <!-- col -->
<div class="col-md-6 col-sm-6">
<img class="img-responsive" src="{{site.baseurl}}/img/about_us/about_us_main.jpg">
</div> <!-- col -->
</div> <!-- row -->
</div> <!-- container -->
</section> <!-- section -->
<div class="container" id="separator"></div>
<section id="team">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h3>Команда</h3>
</div>
<!-- If you need to add or remove an employee, it is done in this repos _data/employees.yml file! -->
<div class="text-center all-employees">
{% for item in site.data.employees %}
<div class="col-sm-6 col-md-4 col-lg-3 team-item">
<img style="max-width:150px;" class="img-circle" src="{{ item.image }}" alt="">
<h4> {{ item.name }} </h4>
<p style="font-size: 0.95em;">{{item.title}}</p>
<div class="team-social">
{% if item.fb %}
<a style="color:black; padding:7px;" target="_blank" href="{{item.fb}}"><i class="fa fa-facebook-square fa-lg"></i></a>
{% endif %}
{% if item.twitter %}
<a style="color:black; padding:7px;" target="_blank" href="{{item.twitter}}"><i class="fa fa-twitter fa fa-lg"></i></a>
{% endif %}
{% if item.linkedin %}
<a style="color:black; padding:7px;" target="_blank" href="{{item.linkedin}}"><i class="fa fa-linkedin-square fa-lg"></i></a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div> <!-- row -->
</div> <!-- container -->
</section> <!-- team -->
<div class="container" id="separator"></div>
{% include footer.html %}