-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (132 loc) · 6.29 KB
/
index.html
File metadata and controls
161 lines (132 loc) · 6.29 KB
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
<!DOCTYPE html>
<html ng-app="app" class="loading" ng-class="{'loaded': true}">
<head>
<title>{{ translate['title'] }}</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name='yandex-verification' content='430352176a68966d'/>
<meta name="description" content="{{ translate['description'] }}">
<meta name="keywords" content="{{ translate['keywords'] }}">
<meta name="author" content="{{ translate['author'] }}">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href="src/css/main.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1" ng-controller="SidebarCtrl">
<header data-spy="affix">
<img class="img-circle" src="src/images/iam.jpg">
<h2>{{ translate['alexey_lushnikov'] }}</h2>
<h5>{{ translate['web_engineer'] }}</h5>
<br>
<p class="view">
<img src="src/images/github.png">
<a href="https://github.com/allush" target="_blank">GitHub</a>
</p>
<p class="view">
<img src="src/images/twitter.png">
<a href="https://twitter.com/alexeylushnikov" target="_blank">Twitter</a>
</p>
<p class="view">
<img src="src/images/skype.png">
<a href="skype:al.lushnikov" target="_blank">al.lushnikov</a>
</p>
</header>
</div>
<div class="col-md-6 col-sm-6" ng-controller="ContentCtrl">
<div class="text-right">
<div class="btn-group" role="group">
<button type="button"
class="btn btn-default btn-xs"
ng-class="{'active': lang == 'ru'}"
ng-click="setLang('ru')">
RU
</button>
<button type="button"
class="btn btn-default btn-xs"
ng-class="{'active': lang == 'en'}"
ng-click="setLang('en')">
EN
</button>
</div>
</div>
<section>
<h3 style="margin-top: 0;">{{ translate['resume'] }}</h3>
<div ng-include="'src/views/' + lang + '/resume.html'"></div>
<div ng-include="'src/views/' + lang + '/skills.html'"></div>
<br/>
<h3 style="margin-top: 0;">{{ translate['conferences'] }}</h3>
<div ng-include="'src/views/' + lang + '/conferences.html'"></div>
<img class="img-round" src="src/images/team.jpg">
<hr>
<br/>
<h3 style="margin-top: 0;">{{ translate['portfolio'] }}</h3>
<div ng-include="'src/views/' + lang + '/portfolio.html'"></div>
<hr>
<h3>{{ translate['education'] }}</h3>
<div class="portfolio-item" ng-repeat="education in educations">
<strong>» {{ education.place }}</strong>
<div class="small p-l" ng-repeat="period in education.periods">
[{{ period.from }} - {{ period.to }}] - {{ period.description }}
</div>
</div>
<hr>
<h3>{{ translate['job'] }}</h3>
<div class="portfolio-item" ng-repeat="job in jobs">
<strong>» {{ job.name }}</strong>
<div class="small p-l" ng-repeat="position in job.positions">
{{ position }}
</div>
</div>
<hr>
<h3>{{ translate['skills'] }}</h3>
<div class="small">
<div ng-repeat="skill in skills">
<strong>{{ skill.group }}</strong>:
<span ng-repeat="item in skill.items">
{{ item + ($last ? ';' : ',') }}
</span>
</div>
</div>
</section>
</div>
</div>
<hr>
<div class="row" ng-controller="FooterCtrl">
<div class="col-md-11 col-md-offset-1 col-sm-11 col-sm-offset-1">
<footer>
<p>© {{ from }} - {{ to }} {{ translate['alexey_lushnikov'] }} </p>
</footer>
</div>
</div>
</div>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(23351782, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true
});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/23351782" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</body>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular-sanitize.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular-cookies.min.js"></script>
<script src="src/js/app.js"></script>
<script src="src/js/controllers/content_ctrl.js"></script>
<script src="src/js/controllers/footer_ctrl.js"></script>
<script src="src/js/controllers/sidebar_ctrl.js"></script>
</html>