-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofil.html
More file actions
279 lines (227 loc) · 10.8 KB
/
Copy pathprofil.html
File metadata and controls
279 lines (227 loc) · 10.8 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
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
<!DOCTYPE html>
<html lang="cs" class="transition-colors duration-300">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profil</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
#theme-switch:checked ~ .dot {
transform: translateX(100%);
}
</style>
</head>
<body class="bg-white text-gray-900 dark:bg-[#0A0E1A] dark:text-gray-200">
<!-- HEADER – navigace uprostřed, toggle vpravo -->
<header class="absolute inset-x-0 top-0 z-20">
<!-- Navigace uprostřed -->
<div class="absolute top-4 w-full flex justify-center text-white">
<nav class="space-x-8 text-sm uppercase tracking-wide">
<a href="index.html" class="hover:opacity-80">Úvod</a>
<a href="profil.html" class="hover:opacity-80">Profil</a>
<a href="projekty.html" class="hover:opacity-80">Projekty</a>
</nav>
</div>
<!-- Dark mode toggle vpravo -->
<div class="absolute top-4 right-10">
<button id="theme-toggle" class="flex items-center space-x-2 select-none">
<!-- Ikona měsíce -->
<svg xmlns="http://www.w3.org/2000/svg"
class="w-5 h-5 text-white dark:text-gray-200"
fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round"
d="M21 12.79A9 9 0 1111.21 3a7 7 0 009.79 9.79z" />
</svg>
<!-- Switch -->
<label class="relative cursor-pointer">
<input type="checkbox" id="theme-switch" class="sr-only peer">
<div class="w-10 h-5 bg-gray-300 rounded-full peer-checked:bg-gray-700 transition"></div>
<div class="dot absolute top-0 left-0 w-5 h-5 bg-white rounded-full shadow
transition-transform peer-checked:translate-x-full"></div>
</label>
</button>
</div>
</header>
<!-- NÁHLED -->
<section class="relative w-full h-72 bg-cover bg-center"
style="background-image: url('images/uvod.avif');">
<div class="absolute inset-0 bg-black/50 dark:bg-black/60"></div>
</section>
<!-- OBSAH -->
<main class="max-w-5xl mx-auto px-6 py-16">
<div class="flex flex-col md:flex-row gap-10 items-start">
<!-- Profilová fotka -->
<img src="images/profilovka.jpg"
class="w-40 h-40 rounded-full object-cover shadow-lg border border-white/20">
<div>
<!-- O mně -->
<h2 class="text-2xl font-bold mb-3">O mně</h2>
<p class="mb-6 text-gray-700 dark:text-gray-300 leading-relaxed">
Jmenuji se Jakub Kozel a pracuji jako <strong>Content Engineer ve společnosti RWS Group</strong>.
Mám zkušenosti s webovou správou, tvorbou obsahu, školením nových kolegů a testováním nových modulů.
Studuji IT, zajímám se o programování a webový vývoj.
</p>
<!-- Timeline -->
<h3 class="text-xl font-semibold mt-10 mb-6">Pracovní historie a vzdělání</h3>
<div class="border-l-2 border-gray-300 dark:border-gray-700 pl-6 space-y-10">
<!-- RWS -->
<div class="relative">
<h4 class="text-lg font-semibold">RWS Group — Content Engineer</h4>
<p class="text-sm text-gray-500 dark:text-gray-400 mb-2">2019 – současnost</p>
<ul class="list-disc pl-5 space-y-1 text-gray-700 dark:text-gray-300">
<li>Tvorba tréninkových materiálů</li>
<li>Školení nováčků</li>
<li>Správa webu (MS Teams, e-mail)</li>
<li>Příprava produktů a kampaní</li>
<li>CMS: ContentStack, Commercetools</li>
<li>Řízení úkolů v JIRA</li>
<li>QA – testování modulů</li>
</ul>
</div>
<!-- Gymnázium -->
<div class="relative">
<h4 class="text-lg font-semibold">Gymnázium Brno, Vídeňská</h4>
<p class="text-sm text-gray-500 dark:text-gray-400">2012 – 2016</p>
</div>
<!-- ISTQB -->
<div class="relative">
<h4 class="text-lg font-semibold">ISTQB Foundation Level</h4>
<ul class="list-disc pl-5 space-y-1 text-gray-700 dark:text-gray-300">
<li>Základy testování</li>
<li>Statické testy</li>
<li>SDLC</li>
<li>Analýza a návrh testů</li>
<li>Testovací nástroje</li>
</ul>
</div>
<!-- BeeIT -->
<div class="relative">
<h4 class="text-lg font-semibold">BeeIT – Python + SQL</h4>
<p class="text-sm text-gray-500 dark:text-gray-400 mb-2">2023</p>
<p class="font-semibold mt-2">Python</p>
<ul class="list-disc pl-5 space-y-1 text-gray-700 dark:text-gray-300">
<li>Cykly, seznamy, funkce</li>
<li>Práce s textem a soubory</li>
<li>OOP + výjimky</li>
<li>Propojení Pythonu a SQL</li>
<li>Flask/Django – základy</li>
</ul>
<p class="font-semibold mt-3">SQL</p>
<ul class="list-disc pl-5 space-y-1 text-gray-700 dark:text-gray-300">
<li>Relační databáze</li>
<li>Spojení dat</li>
<li>Pokročilé dotazy</li>
<li>Procedury / funkce</li>
<li>Optimalizace výkonu</li>
</ul>
</div>
</div>
</div>
</div>
<section class="max-w-4xl mx-auto px-6 py-16">
<h2 class="text-3xl font-bold mb-6">Dovednosti</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6">
<!-- Web -->
<div class="p-5 rounded-lg bg-gray-100 dark:bg-gray-800 shadow">
<h4 class="font-semibold text-lg mb-2">Web Development</h4>
<p class="text-gray-700 dark:text-gray-300 mb-1">HTML / CSS</p>
<div class="text-yellow-400 text-lg">★★★★★</div>
<p class="text-gray-700 dark:text-gray-300 mt-2 mb-1">Tailwind CSS</p>
<div class="text-yellow-400 text-lg">★★★★☆</div>
<p class="text-gray-700 dark:text-gray-300 mt-2 mb-1">JavaScript</p>
<div class="text-yellow-400 text-lg">★★★☆☆</div>
</div>
<!-- Backend -->
<div class="p-5 rounded-lg bg-gray-100 dark:bg-gray-800 shadow">
<h4 class="font-semibold text-lg mb-2">Backend</h4>
<p class="text-gray-700 dark:text-gray-300 mb-1">Python</p>
<div class="text-yellow-400 text-lg">★★★★☆</div>
<p class="text-gray-700 dark:text-gray-300 mt-2 mb-1">Flask / Django</p>
<div class="text-yellow-400 text-lg">★★★☆☆</div>
</div>
<!-- Databáze -->
<div class="p-5 rounded-lg bg-gray-100 dark:bg-gray-800 shadow">
<h4 class="font-semibold text-lg mb-2">Databáze</h4>
<p class="text-gray-700 dark:text-gray-300 mb-1">SQL</p>
<div class="text-yellow-400 text-lg">★★★★☆</div>
<p class="text-gray-700 dark:text-gray-300 mt-2 mb-1">Procedury / dotazy</p>
<div class="text-yellow-400 text-lg">★★★☆☆</div>
</div>
<!-- Soft skills -->
<div class="p-5 rounded-lg bg-gray-100 dark:bg-gray-800 shadow">
<h4 class="font-semibold text-lg mb-2">Soft Skills</h4>
<p class="text-gray-700 dark:text-gray-300 mb-1">Týmová spolupráce</p>
<div class="text-yellow-400 text-lg">★★★★★</div>
<p class="text-gray-700 dark:text-gray-300 mt-2 mb-1">Komunikace</p>
<div class="text-yellow-400 text-lg">★★★★☆</div>
<p class="text-gray-700 dark:text-gray-300 mt-2 mb-1">Školení kolegů</p>
<div class="text-yellow-400 text-lg">★★★★☆</div>
</div>
</div>
</section>
</main>
<!-- DARK MODE SCRIPT -->
<script>
const html = document.documentElement;
const themeSwitch = document.getElementById("theme-switch");
if (themeSwitch) {
if (localStorage.getItem("theme") === "dark") {
html.classList.add("dark");
themeSwitch.checked = true;
}
themeSwitch.addEventListener("change", () => {
if (themeSwitch.checked) {
html.classList.add("dark");
localStorage.setItem("theme", "dark");
} else {
html.classList.remove("dark");
localStorage.setItem("theme", "light");
}
});
}
</script>
<script>
// zvýraznění aktuální položky v menu
const currentPage = location.pathname.split('/').pop() || 'index.html';
document.querySelectorAll('nav a').forEach(link => {
const href = link.getAttribute('href');
if (href === currentPage) {
link.classList.add('font-bold', 'border-b', 'border-white');
}
});
</script>
<footer class="mt-20 border-t border-gray-300 dark:border-gray-700">
<div class="max-w-5xl mx-auto px-6 py-10 text-center">
<div class="flex justify-center space-x-6 mb-6">
<!-- GitHub -->
<a href="https://github.com/Roxrit3" target="_blank"
class="text-gray-700 dark:text-gray-300 hover:text-blue-500 dark:hover:text-blue-400 transition">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 .5C5.65.5.5 5.65.5 12c0 5.1 3.3 9.4 7.9 10.9.6.1.8-.2.8-.6v-2c-3.2.7-3.9-1.5-3.9-1.5-.6-1.4-1.3-1.8-1.3-1.8-1-.7.1-.7.1-.7 1.1.1 1.7 1.1 1.7 1.1 1 .1.7 2.1 2.7 2.1 1.7 0 2.5-.8 2.8-1.5.1-.7.4-1.2.7-1.5-2.6-.3-5.3-1.3-5.3-6 0-1.3.5-2.3 1.1-3.1 0-.3-.5-1.4.1-2.9 0 0 .9-.3 3 .1.9-.2 1.9-.3 2.9-.3 1 0 2 .1 2.9.3 2.1-.4 3-.1 3-.1.7 1.5.2 2.6.1 2.9.7.8 1.1 1.8 1.1 3.1 0 4.7-2.7 5.7-5.3 6 .4.3.8 1 0 2.1v3.1c0 .4.2.7.8.6 4.7-1.5 7.8-5.8 7.8-10.8C23.5 5.7 18.3.5 12 .5z" />
</svg>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/jakub-kozel-17096b137/" target="_blank"
class="text-gray-700 dark:text-gray-300 hover:text-blue-500 dark:hover:text-blue-400 transition">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M4.98 3.5C3.34 3.5 2 4.84 2 6.48s1.34 2.98 2.98 2.98c1.65 0 2.98-1.34 2.98-2.98S6.63 3.5 4.98 3.5zM2.4 21.5h5.16V9h-5.16v12.5zM9.34 9H14v1.71h.08c.65-1.24 2.24-2.54 4.6-2.54 4.92 0 5.82 3.24 5.82 7.45V21.5H19.3v-5.8c0-1.38-.02-3.15-1.92-3.15-1.93 0-2.23 1.5-2.23 3.05v5.9h-5.81V9z"/>
</svg>
</a>
</div>
<p class="text-xs text-gray-500 dark:text-gray-500">
© 2025 Jakub Kozel — Vytvořeno jako projekt do školy
</p>
</div>
</footer>
</body>
</html>