fixed templates from claude

This commit is contained in:
2026-04-21 21:51:44 -06:00
parent cbbf2729a9
commit 7a78e353a1
3 changed files with 284 additions and 51 deletions
+104 -36
View File
@@ -1,55 +1,123 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ name }}</title>
<style>
@page { size: letter; margin: 0.75in; }
/* PDF page settings - Weasyprint */
@page {
size: letter;
margin: 0.75in;
}
/* Hide web version, show ATS version */
.web-only {
display: none !important;
}
/* 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;
.ats-only {
display: block;
}
/* reset body - let @page handle margins */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
font-size: 11pt;
line-height: 1.4;
color: #000;
}
h1 {
font-size: 18pt;
margin: 0 0 5pt 0;
text-align: center;
}
h2 {
font-size: 12pt;
/* contact section - centered and simple */
#contact .ats-only h1 {
font-size: 20pt;
font-weight: bold;
margin: 12pt 0 6pt 0;
text-align: center;
margin: 0 0 6pt 0;
}
#contact .ats-only p {
text-align: center;
font-size: 10pt;
margin: 0 0 12pt 0;
}
/* section headers */
h3 {
font-size: 12pt;
font-weight: bold;
margin-top: 12pt;
margin-bottom: 6pt;
padding-bottom: 2pt;
border-bottom: 1pt solid #333;
}
h3 {
font-size: 11pt;
font-weight: bold;
margin: 8pt 0 2pt 0;
/* first section no top margin */
#summary h3 {
margin-top: 0;
}
p { margin: 4pt 0; }
ul {
margin: 4pt 0;
padding-left: 20pt;
/* Job entry headers */
.job-entry .ats-only h3 {
font-size: 11pt;
font-weight: bold;
margin: 10pt 0 2pt 0;
padding: 0;
border: none;
}
li { margin-bottom: 2pt; }
/* Center contact info */
#contact p {
text-align: center;
.job-entry .ats-only p {
font-size: 10pt;
margin: 2pt 0 6pt 0;
}
.job-entry {
margin-bottom: 12pt;
page-break-inside: avoid;
}
.job-entry:last-child {
margin-bottom: 0;
}
/* paragraphs */
p {
margin: 4pt 0;
font-size: 10pt;
}
/* lists */
ul {
margin: 4pt 0 8pt 0;
padding-left: 20pt;
list-style-type: disc;
}
li {
margin-bottom: 2pt;
font-size: 10pt;
line-height: 1.3;
}
/* sections */
div[id] {
margin-bottom: 10pt;
}
strong {
font-weight: bold;
}
</style>
</head>
<body>
{{ content }}
</body>
</html>