<!DOCTYPE html> <html> <head>
<meta charset="UTF-8"> <title> {{ full_name }} - {{{ details.title }}} </title> <style> {{ css }} {{# is_pdf}} {{ pdf_css }} {{/ is_pdf}} </style>
</head> <body>
<div class="cv-wrapper"> <div class="header"> <table> <tr> <td width="100%"> <p class="name"> <span class="cyan">{{ details.last_name }}</span> <span>{{ details.first_name }}</span> </p> </td> <td class="content-wrapper"> <table class="contact-list" cellpadding="2"> {{# contact}} <tr> {{# .}} <td class="contact-wrapper"> <a {{# url}}href="{{ url }}"{{/ url}} target="_blank">{{{ icon_svg }}}{{ text }}</a> </td> {{/ .}} </tr> {{/ contact}} </table> </td> </tr> </table> <hr> <p class="title">{{{ details.title }}}</p> </div> <table>
<!– __ ___ ___ _ _ | _ \ _ \ _ | __| _| | | _| | |_/ / |_/ / | | | |_ | | | | | |__ | __/| /| | | | _| | | | | | __| | | | |\ \ _/ / | _| |_| |__| |_ _| _| _|__/| __/___/_/ –>
{{# has_profile}} <tr class="section section-profile"> <td class="title-wrapper"> <p class="title cyan">Profile</p> </td> <td class="content-wrapper"> <p class="content">{{{ profile }}}</p> </td> </tr> {{/ has_profile}}
<!–
_____ _ _______ _ _ _____
/ _| | / /_ _| | | | / _| \ `–.| |/ / | | | | | | \ `–.
`--. \ \ | | | | | | `--. \
/__/ / |\ _| |_| |__| |_/_/ / ___/| _/__/___/___/_/ –>
{{# has_skills}} <tr class="section"> <td class="title-wrapper"> <p class="title cyan">Skills</p> </td> <td class="content-wrapper skills-section"> <table class="skill-list"> {{# skills}} <tr> {{# .}} <td class="skill-wrapper"> <span class="skill-title">{{{ name }}}</span> <br> <span class="content">{{{ description }}}</span> </td> {{/ .}} </tr> {{/ skills}} </table> </td> </tr> {{/ has_skills}}
<!–
_____ _____ _____ _ _ _ _ _____ _____ ___ _
|_ _| _/ __ | | | || \ | |_ _/ __ \ / _ \ | |
| | | |__ | / \/| |_| || \| | | | | / \// /_\ \| | | | | __|| | | _ || . ` | | | | | | _ || | | | | |___| \__/\| | | || |\ |_| |_| \__/\| | | || |____ \_/ \____/ \____/\_| |_/\_| \_/\___/ \____/\_| |_/\_____/
–>
{{# has_technical}} <tr class="section"> <td class="title-wrapper"> <p class="title cyan">Technical</p> </td> <td class="content-wrapper"> <table class="technical-list"> {{# technical}} <tr> <td class="skill-title technical-title">{{ category }}</td> <td class="content"><p>{{{ items }}}</p></td> </tr> {{/ technical}} </table> </td> </tr> {{/ has_technical}}
<!–
_____ _____ _____ _____ _____ _____ _ _ _____
/ _| _/ __ _ _|_ _| _ | \ | |/ _| \ `–.| |__ | / / | | | | | | | | | |\ `–.
`--. \ __|| | | | | | | | | | . ` | `--. \
/__/ / |_| __/\ | | _| |_\ _/ / |\ |/__/ / ___/_/ __/ _/ ___/ __/| _/__/ –>
{{# sections}} <tr class="section"> <td class="title-wrapper"> <p class="title cyan">{{ name }}</p> </td> <td class="content-wrapper"> {{# items}} <table class="subsection"> <tr> <td> <p class="title"> {{# logo}} <img class="logo" src="data:image/png;base64,{{ logo_img }}"> {{/ logo}} {{ title }} </p> </td> <td class="period-wrapper"> <p> {{# from}} {{ from.month_name }} <b>{{ from.year }}</b> {{# to}} - {{# to.year}} {{ to.month_name }} <b>{{ to.year }}</b> {{/ to.year}} {{^ to.year}} {{ to }} {{/ to.year}} {{/ to}} {{/ from}} </p> </td> </tr> <tr> {{# subtitle}} <td> <p class="subtitle"> {{ subtitle }} </p> </td> {{/ subtitle}} {{# location}} <td class="location-wrapper"> <p class="cyan">{{ location }}</p> </td> {{/ location}} </tr> <tr> <td colspan="2"> <ul class="no-list"> {{# description}} <li class="content">{{& . }}</li> {{/ description}} </ul> </td> </tr> </table> {{/ items}} </td> </tr> {{/ sections}} </table> </div>
</body> </html>