Skip to content

Commit c1fd823

Browse files
committed
add index
1 parent 513f2c5 commit c1fd823

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/upload-pages-artifact@v3
3838
with:
3939
# Upload entire repository
40-
path: '.'
40+
path: './index.html'
4141
- name: Deploy to GitHub Pages
4242
id: deployment
4343
uses: actions/deploy-pages@v4

index.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!DOCTYPE HTML>
2+
<!--
3+
Identity by HTML5 UP
4+
html5up.net | @ajlkn
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
-->
7+
<html>
8+
<head>
9+
<title>Stefan Keidel - (Software|Data) Engineer</title>
10+
<meta charset="utf-8" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
12+
<link rel="stylesheet" href="assets/css/main.css" />
13+
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
14+
</head>
15+
<body class="is-preload">
16+
17+
<!-- Wrapper -->
18+
<div id="wrapper">
19+
20+
<!-- Main -->
21+
<section id="main">
22+
<header>
23+
<span class="avatar"><img src="images/portrait.jpg" alt="" /></span>
24+
<h1>Stefan Keidel</h1>
25+
<p>(Software|Data) Engineer</p>
26+
</header>
27+
<footer>
28+
<ul class="icons">
29+
<li><a href="https://www.github.com/stefankeidel" class="icon brands fa-github">GitHub</a></li>
30+
<li><a href="https://www.linkedin.com/in/stefankeidel/" target="_blank" class="icon brands fa-linkedin">LinkedIn</a></li>
31+
</ul>
32+
</footer>
33+
</section>
34+
35+
<!-- Footer -->
36+
<footer id="footer">
37+
<ul class="copyright">
38+
<li>&copy; Stefan Keidel</li>
39+
</ul>
40+
</footer>
41+
42+
</div>
43+
44+
<!-- Scripts -->
45+
<script>
46+
if ('addEventListener' in window) {
47+
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-preload\b/, ''); });
48+
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
49+
}
50+
</script>
51+
52+
</body>
53+
</html>

0 commit comments

Comments
 (0)