\documentclass[10pt]{article} \usepackage[margin=0.7in]{geometry} \usepackage{multicol} \usepackage{enumitem} \usepackage{parskip} \usepackage[hidelinks]{hyperref} \begin{document} \begin{center} {\Large {{ contact.name|default("Name") }} }\\ {{ [contact.email, contact.phone, contact.location]|select|join(" | ") }}\\ {{ [contact.linkedin, contact.website]|select|join(" | ") }} \end{center} \begin{multicols}{2} \BLOCK{ if skills } \section*{Skills} \begin{itemize}[leftmargin=*] \BLOCK{ for skill in skills } \BLOCK{ if skill } \item {{ skill }} \BLOCK{ endif } \BLOCK{ endfor } \end{itemize} \BLOCK{ endif } \BLOCK{ if education } \section*{Education} \BLOCK{ for edu in education } \BLOCK{ if edu.institution or edu.degree or edu.field or edu.details } \textbf{ {{ edu.institution|default("Institution") }} } \\ {{ edu.degree|default("") }} {{ edu.field|default("") }} \\ {{ edu.start_date|default("") }} -- {{ edu.end_date|default("") }} \\ \BLOCK{ if edu.details } \begin{itemize}[leftmargin=*] \BLOCK{ for bullet in edu.details } \BLOCK{ if bullet.text } \item {{ bullet.text }} \BLOCK{ endif } \BLOCK{ endfor } \end{itemize} \BLOCK{ endif } \BLOCK{ endif } \BLOCK{ endfor } \BLOCK{ endif } \BLOCK{ if certifications } \section*{Certifications} \begin{itemize}[leftmargin=*] \BLOCK{ for cert in certifications } \BLOCK{ if cert.name or cert.issuer or cert.date } \item {{ cert.name|default("Certification") }} {{ cert.issuer|default("") }} {{ cert.date|default("") }} \BLOCK{ endif } \BLOCK{ endfor } \end{itemize} \BLOCK{ endif } \columnbreak \BLOCK{ if summary } \section*{Summary} {{ summary }} \BLOCK{ endif } \BLOCK{ if work_experience } \section*{Experience} \BLOCK{ for exp in work_experience } \BLOCK{ if exp.title or exp.company or exp.bullets } \textbf{ {{ exp.title|default("Role") }} } --- {{ exp.company|default("Company") }} \\ \BLOCK{ if exp.location }{{ exp.location }} \\ \BLOCK{ endif } {{ exp.start_date|default("") }} -- {{ exp.end_date|default("Present") }} \\ \BLOCK{ if exp.bullets } \begin{itemize}[leftmargin=*] \BLOCK{ for bullet in exp.bullets } \BLOCK{ if bullet.text } \item {{ bullet.text }} \BLOCK{ endif } \BLOCK{ endfor } \end{itemize} \BLOCK{ endif } \BLOCK{ endif } \BLOCK{ endfor } \BLOCK{ endif } \BLOCK{ if projects } \section*{Projects} \BLOCK{ for proj in projects } \BLOCK{ if proj.name or proj.description or proj.bullets } \textbf{ {{ proj.name|default("Project") }} } --- {{ proj.description|default("") }} \BLOCK{ if proj.bullets } \begin{itemize}[leftmargin=*] \BLOCK{ for bullet in proj.bullets } \BLOCK{ if bullet.text } \item {{ bullet.text }} \BLOCK{ endif } \BLOCK{ endfor } \end{itemize} \BLOCK{ endif } \BLOCK{ endif } \BLOCK{ endfor } \BLOCK{ endif } \end{multicols} \end{document}