-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
127 lines (116 loc) · 5.75 KB
/
about.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
---
layout: null
title: Представляюсь
description: Биомашина по решению бизнес-задач.
permalink: /about/
last_modified_at: "2025-01-05"
---
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ page.title | append: ' — Роман Кох' }}</title>
<meta name="description" content="{{ page.description }}">
<link rel="canonical" href="{{ page.url | absolute_url}}">
<link rel="icon" href="{{ '/assets/img/favicon.svg' | relative_url }}?v={{ site.time | date:'%s' }}" type="image/svg+xml">
<link rel="icon" href="{{ '/assets/img/favicon.png' | relative_url }}?v={{ site.time | date:'%s' }}" type="image/png" sizes="329x329">
<style>
body {
max-width:42rem;
padding:0 1.25rem;
margin: 0 auto;
}
div {
display:flex;
flex-wrap:wrap;
place-content:space-between;
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [{
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Главная",
"item": {{ site.url | absolute_url | jsonify }}
},
{
"@type": "ListItem",
"position": 2,
"name": {{ page.title | jsonify }},
"item": {{ page.url | absolute_url | jsonify }}
}]
},
{
"@type": "ProfilePage",
"datePublished": "2024-05-19T03:00:00+03:00",
"dateModified": {{ page.last_modified_at | date_to_xmlschema | jsonify }},
"mainEntity": {
"@type": "Person",
"name": {{ site.author.name | jsonify }},
"description": {{ site.author.description | jsonify }},
"url": {{ '/about/' | absolute_url | jsonify }},
"image": {
"@type": "ImageObject",
"url": {{ site.author.image | absolute_url | jsonify }},
"width": 400,
"height": 400
},
"sameAs": [
{% for entry in site.social_links -%}
{{ entry.user_url | jsonify }}
{%- unless forloop.last %},{%- endunless %}
{% endfor -%}
]
}
}]
}
</script>
{%- if jekyll.environment == 'production' and site.google_tag_manager -%}
{%- include gtm.html -%}
{%- endif -%}
</head>
<body>
<div>
<p><a href="{{ site.url | absolute_url }}">< Главная</a></p>
<p>Страница без дизайна — так и задумано!</p>
</div>
<h1 id="section">Роман Кох</h1>
<p>Меня зовут Роман Кох. Уже более 10 лет я работаю в e-commerce. В разное время я занимал должность Head of E-commerce и руководил командами онлайн продаж в Alshaya Group, Xiaomi, Michelin и L’Oreal.</p>
<p>Делюсь своим опытом в блоге <a href="https://romakoch.com" target="_blank" rel="me noreferrer">romakoch.com</a> и на <a href="https://www.linkedin.com/in/fatnotbad/" target="_blank" rel="me noreferrer">LinkedIn</a>. Пишу про e-commerce, продуктивность и менеджмент. Мой подход — только практические инструменты и проверенные решения.</p>
<h2 id="section-1">Карьера</h2>
<ul>
<li>2023 — ... | <strong>L'Oreal</strong>, Head of E-commerce;</li>
<li>2021 — 2023 | <strong>Alshaya Group</strong>, Head of E-commerce;</li>
<li>2019 — 2021 | <strong>Xiaomi</strong>, Head of E-commerce;</li>
<li>2017 — 2019 | <strong>Michelin</strong>, E-commerce Region Lead;</li>
<li>2016 — 2017 | <strong>Clarins Group</strong>, Senior Product Manager.</li>
</ul>
<h2 id="section-2">Характеристика</h2>
<ul>
<li>В e-commerce — монстр;</li>
<li>В суть процессов и явлений вникаю с первой космической — это моя суперсила;</li>
<li>Всегда нахожу точки роста (см. выше про суперсилу);</li>
<li>Находить решения — мой фетиш;</li>
<li>Поднимать e-com с колен — мой крест;</li>
<li>Только зелёные циферки в P&L;</li>
<li>Видел всю трудовую «дичь» (всю).</li>
</ul>
<h2 id="section-3">Контакты</h2>
<ul>
<li><a href="https://www.linkedin.com/in/fatnotbad/" target="_blank" rel="me noreferrer">linkedin</a>;</li>
<li><a href="https://t.me/FatNotBad" target="_blank" rel="me noreferrer">telegram</a>;</li>
<li><a href="mailto:[email protected]" target="_blank">e-mail</a>.</li>
</ul>
<h2 id="section-4">Публикации</h2>
<ul>
<li><a href="https://habr.com/ru/users/FatNotBad/publications/articles/" target="_blank" rel="noreferrer">habr.ru</a>;</li>
<li><a href="https://vc.ru/u/245143-roman-koh" target="_blank" rel="noreferrer">vc.ru</a>;</li>
<li><a href="https://www.e-xecutive.ru/users/1898956-roman-koh/articles" target="_blank" rel="noreferrer">e-xecutive.ru</a>.</li>
</ul>
</body>
</html>