Files
moonweb-site/stefankoelle/cv-print.njk
T
2026-08-14 12:26:58 +02:00

39 lines
1.0 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV - Stefan Koelle</title>
<link rel="stylesheet" href="/assets/style.css">
<style>
@media print {
body { background: white; }
#links, #head, #background-image, .headlinespace, .space,
#personalprojectscontent, #programminglanguagescontent, #impressumcontent {
display: none !important;
}
#container { max-width: 100%; padding: 0; }
#headline { position: static; width: 100%; box-shadow: none; background: none; }
#cvcontent {
position: static;
width: 100%;
box-shadow: none;
background: none;
padding: 0;
}
}
</style>
</head>
<body class="blog">
<div id="container">
<div id="wrapper-content">
<div id="headline">
<h1>Stefan Kölle</h1>
Senior Software Developer & Software&nbsp;Architect
</div>
{% include "cv-content.njk" %}
</div>
</div>
</body>
</html>