-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
217 lines (201 loc) · 5.91 KB
/
index.html
File metadata and controls
217 lines (201 loc) · 5.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Alex Szabo's portfolio and interactive CV"
/>
<meta name="author" content="Alex Szabo" />
<meta name="keywords" content="Alex Szabo, portfolio, CV, interactive CV" />
<link rel="icon" type="image/x-icon" href="/cv/favicon.ico" />
<title>Alex Szabo - CVs and Interactive CV</title>
<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-53641010-10", "auto");
ga("send", "pageview");
</script>
<style>
#presentations-container {
display: flex;
flex-wrap: wrap;
}
#articles-container {
display: flex;
flex-wrap: wrap;
}
#projects-container {
display: flex;
flex-wrap: wrap;
}
.presentation-item {
width: 40%;
border: 1px solid rgb(168, 214, 255);
background-color: aliceblue;
border-radius: 3px;
padding: 0.5em;
margin: 0.5em;
}
.article-item {
width: 40%;
border: 1px solid pink;
background-color: rgb(255, 230, 234);
border-radius: 3px;
padding: 0.5em;
margin: 0.5em;
}
.project-item {
width: 40%;
border: 1px solid green;
background-color: lightgreen;
border-radius: 3px;
padding: 0.5em;
margin: 0.5em;
}
.caption {
font-style: italic;
font-size: 0.8em;
margin-top: -1em;
}
</style>
<script>
function renderPersonalContent(containerId, data, contentKind) {
const container = document.getElementById(containerId);
data.forEach((item) => {
const itemElement = document.createElement("div");
itemElement.classList.add(`${contentKind}-item`);
itemElement.innerHTML = `
<h3>${item.title}</h3>
<h5 class="caption">${item.date}</h5>
<p>${item.description}</p>
<p>
${
item.url
? `øø <a target="_blank" href="${item.url}">Link to ${contentKind}</a>`
: ""
} ${
item.source
? `∑∑ <a target="_blank" href="${item.source}">*Source code*</a>`
: ""
}
</p>
`;
container.appendChild(itemElement);
});
}
function handlePersonalContentError(error, containerId, contentKind) {
console.log(error);
const container = document.getElementById(containerId);
container.innerHTML = `
<p>Sorry, there was an error loading the ${contentKind}.</p>
`;
}
</script>
</head>
<body>
<h1>Alex Szabo - Portfolio and Interactive CV</h1>
<h3>
<small>Please don't mind my university-teacher-esque visual style</small>
</h3>
<h2>Links</h2>
<ul>
<li>
<a href="https://github.com/delanni">GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/alxszabo/">LinkedIn</a>
</li>
<li>
<a id="bananamode" onclick="enableBananaMode()" href="#"
>Enable Chief Banana Mode (🙈)</a
>
</li>
</ul>
<h2>CVs</h2>
<ul>
<li>
<a href="timeline.html">The timeline of my work and study history 🤝</a>
</li>
<li>
Current CV in <a href="cv">HTML</a>, same but
<a href="cv_short">shorter</a>, same but <a href="cv.md">Markdown 🤓</a>
</li>
<li>
Current CV in
<a href="cv_alex_szabo_2023_01.pdf">markdown, but as a pdf 👔</a>
</li>
<li></li>
</ul>
<h2>Fun projects</h2>
<h5 class="caption">Some weird or interesting stuff on Github</h5>
<section id="projects-container"></section>
<script>
fetch("./data/projects.json")
.then((response) => response.json())
.then((projects) => {
renderPersonalContent("projects-container", projects, "project");
})
.catch((error) => {
handlePersonalContentError(error, "projects-container", "projects");
});
</script>
<h2>Presentations</h2>
<h5 class="caption">Mostly presentations about web 3D and audio</h5>
<section id="presentations-container"></section>
<script>
fetch("./data/presentations.json")
.then((response) => response.json())
.then((presentations) => {
renderPersonalContent(
"presentations-container",
presentations,
"presentation"
);
})
.catch((error) => {
handlePersonalContentError(
error,
"presentations-container",
"presentations"
);
});
</script>
<h2>Articles</h2>
<h5 class="caption">
Mostly satirical articles (<a href="https://medium.com/@alex-on-the-web/"
>from medium</a
>)
</h5>
<section id="articles-container"></section>
<script>
fetch("./data/articles.json")
.then((response) => response.json())
.then((articles) => {
renderPersonalContent("articles-container", articles, "article");
})
.catch((error) => {
handlePersonalContentError(error, "articles-container", "articles");
});
</script>
<script src="./scripts/bananaclick.js"></script>
</body>
</html>