40 lines
1.6 KiB
PHP
40 lines
1.6 KiB
PHP
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CV: <?php echo htmlspecialchars($cv['title']); ?></title>
|
|
<style>
|
|
body { font-family: 'Times New Roman', Times, serif; line-height: 1.4; }
|
|
.cv-container { max-width: 800px; margin: auto; padding: 30px; border: 1px solid #ccc; }
|
|
h1, h2, h3 { margin-bottom: 0.5em; }
|
|
h1 { text-align: center; font-size: 2.8em; text-transform: uppercase; letter-spacing: 2px;}
|
|
h2 { font-size: 1.5em; border-bottom: 2px solid #333; padding-bottom: 5px; margin-top: 2em;}
|
|
.contact-info { text-align: center; margin-bottom: 2em; }
|
|
.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>
|
|
<div class="contact-info">
|
|
<p><?php echo htmlspecialchars(json_decode($cv['content'])->email); ?> | <?php echo htmlspecialchars(json_decode($cv['content'])->phone); ?></p>
|
|
</div>
|
|
</header>
|
|
<div class="section">
|
|
<h2>Work Experience</h2>
|
|
<div><?php echo nl2br(htmlspecialchars(json_decode($cv['content'])->experience)); ?></div>
|
|
</div>
|
|
<div class="section">
|
|
<h2>Education</h2>
|
|
<div><?php echo nl2br(htmlspecialchars(json_decode($cv['content'])->education)); ?></div>
|
|
</div>
|
|
<div class="section">
|
|
<h2>Skills</h2>
|
|
<div><?php echo nl2br(htmlspecialchars(json_decode($cv['content'])->skills)); ?></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|