37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CV: <?php echo htmlspecialchars($cv['title']); ?></title>
|
|
<style>
|
|
body { font-family: sans-serif; line-height: 1.6; }
|
|
.cv-container { max-width: 800px; margin: auto; padding: 20px; }
|
|
h1, h2, h3 { margin-bottom: 0.5em; }
|
|
h1 { font-size: 2.5em; }
|
|
h2 { font-size: 1.8em; border-bottom: 1px solid #eee; padding-bottom: 5px; margin-top: 1.5em;}
|
|
.section { margin-bottom: 1.5em; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="cv-container">
|
|
<header class="section">
|
|
<h1><?php echo htmlspecialchars(json_decode($cv['content'])->name); ?></h1>
|
|
<p><?php echo htmlspecialchars(json_decode($cv['content'])->email); ?> | <?php echo htmlspecialchars(json_decode($cv['content'])->phone); ?></p>
|
|
</header>
|
|
<div class="section">
|
|
<h2>Work Experience</h2>
|
|
<p><?php echo nl2br(htmlspecialchars(json_decode($cv['content'])->experience)); ?></p>
|
|
</div>
|
|
<div class="section">
|
|
<h2>Education</h2>
|
|
<p><?php echo nl2br(htmlspecialchars(json_decode($cv['content'])->education)); ?></p>
|
|
</div>
|
|
<div class="section">
|
|
<h2>Skills</h2>
|
|
<p><?php echo nl2br(htmlspecialchars(json_decode($cv['content'])->skills)); ?></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|