added ats friendly remume
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-04-21 20:47:00 -06:00
parent 235414ebfe
commit 043af0b6fa
5 changed files with 132 additions and 19 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
<div id="download-bar" style="position: sticky; top: 0; background: #f5f5f5; padding: 10px; text-align: center; border-bottom: 1px solid #ddd; z-index: 100;">
Download:
<a href="/resume/{{ pdffile }}">Resume (PDF)</a>
<a href="/resume/{{ web_pdf }}">Resume (web PDF)</a>
<a href="/resume/{{ ats_pdf }}">Resume (ats-friendly PDF)</a>
</div>
+55
View File
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<style>
@page { size: letter; margin: 0.75in; }
/* Hide web version */
.web-only { display: none !important; }
.ats-only { display: block; }
/* Simple, ATS-friendly styling */
body {
font-family: Arial, sans-serif;
font-size: 11pt;
line-height: 1.4;
}
h1 {
font-size: 18pt;
margin: 0 0 5pt 0;
text-align: center;
}
h2 {
font-size: 12pt;
font-weight: bold;
margin: 12pt 0 6pt 0;
border-bottom: 1pt solid #333;
}
h3 {
font-size: 11pt;
font-weight: bold;
margin: 8pt 0 2pt 0;
}
p { margin: 4pt 0; }
ul {
margin: 4pt 0;
padding-left: 20pt;
}
li { margin-bottom: 2pt; }
/* Center contact info */
#contact p {
text-align: center;
}
</style>
</head>
<body>
{{ content }}
</body>
</html>
+28
View File
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<style>
@page { size: letter; margin: 0.5in 0.75in; }
/* Hide ATS version */
.ats-only { display: none !important; }
.web-only { display: block; }
/* Your current beautiful styling */
#contact-table {
width: 100%;
table-layout: fixed;
/* ... rest of your styling ... */
}
.experience-table {
width: 100%;
table-layout: fixed;
/* ... */
}
</style>
</head>
<body>
{{ content }}
</body>
</html>