-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
155 lines (149 loc) · 5.1 KB
/
index.html
File metadata and controls
155 lines (149 loc) · 5.1 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>leotrax3d</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="navbar"></div>
<main class="container py-5">
<section class="about-hero mb-5">
<div class="row align-items-center">
<div class="col-lg-4 mb-4 mb-lg-0 text-center">
<img
src="https://avatars.githubusercontent.com/u/190099057?s=200&v=4"
alt="leotrax"
class="rounded-circle"
width="200"
height="200"
/>
</div>
<div class="col-lg-8">
<h1 class="display-5 mb-3">leotrax</h1>
<p class="lead">Developer | 3D Printing Enthusiast | Learning</p>
<p class="lead">
Passionate about building creative solutions with code and
hardware. Currently developing engaging educational tools and
exploring new technologies.
</p>
</div>
</div>
</section>
<hr class="my-5" />
<section class="about-interests mb-5">
<h2 class="mb-4">Interests & Skills</h2>
<div class="row g-3">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Main Interests</h5>
<ul class="list-unstyled">
<li>• 3D Printing & Design</li>
<li>• Educational Technology</li>
<li>• Embedded Systems</li>
<li>• Game Development</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Currently Learning</h5>
<ul class="list-unstyled">
<li>• Java</li>
<li>• Advanced Game Development</li>
<li>• IoT Applications</li>
<li>• HTML (I Know it´s a Markup language :)</li>
<li>• JavaScrpit</li>
<li>• CSS</li>
<li>• PHP</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="about-projects mb-5">
<h2 class="mb-4">Featured Work</h2>
<div class="row g-3">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">ClassSignal</h5>
<p class="lead">
A local classroom engagement system using ESP32 devices and
Raspberry Pi. Students signal participation with a button.
Real-time dashboard included.
</p>
<a
href="https://github.com/leotrax3d/ClassSignal"
target="_blank"
class="btn btn-primary btn-sm"
>
View on GitHub
</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Profile Repository</h5>
<p class="lead">
Configuration and documentation files for my GitHub profile.
Open source and always evolving.
</p>
<a
href="https://github.com/leotrax3d/leotrax3d"
target="_blank"
class="btn btn-primary btn-sm"
>
View on GitHub
</a>
</div>
</div>
</div>
</div>
</section>
<section class="about-contact">
<h2 class="mb-4">GitHub</h2>
<p class="mb-4">Feel free to just say hi!</p>
<div class="d-flex gap-3">
<a
href="https://github.com/leotrax3d"
target="_blank"
class="btn btn-primary btn-sm"
>
GitHub Profile
</a>
</div>
</section>
</main>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"
></script>
<script>
fetch("navbar.html")
.then((response) => {
if (!response.ok)
throw new Error("Navbar konnte nicht geladen werden.");
return response.text();
})
.then((data) => {
document.getElementById("navbar").innerHTML = data;
})
.catch((error) => console.error(error));
</script>
</body>
</html>