Reziro
Toggle Sidebar
Dashboard
Resumes
Resume Tailor
Profiles
Resume Templates
Subscription
Admin
Users
Resume Metrics
Settings
Templates
Create
JD
Create New Template
Cancel
Save Template
Template Details
Template Name
Description
Template Editor
Use Handlebars/Mustache syntax to define placeholders for dynamic content.
<div class="resume-container"> <header> <h1>{{ personalInfo.firstName }} {{ personalInfo.lastName }}</h1> <p>{{ personalInfo.email }} | {{ personalInfo.phone }} | {{ personalInfo.location }}</p> {{#if personalInfo.portfolio}} <p>Portfolio: <a href="{{ personalInfo.portfolio }}">{{ personalInfo.portfolio }}</a></p> {{/if}} </header> <section class="summary"> <h2>Summary</h2> <p>{{ summary }}</p> </section> {{#if experience}} <section class="experience"> <h2>Work Experience</h2> {{#each experience}} <div class="job"> <h3>{{ this.jobTitle }} at {{ this.companyName }}</h3> <p class="dates">{{ this.startDate }} - {{ this.endDate }}</p> <p>{{ this.description }}</p> </div> {{/each}} </section> {{/if}} {{#if education}} <section class="education"> <h2>Education</h2> {{#each education}} <div class="school"> <h3>{{ this.degree }}</h3> <p>{{ this.school }}</p> <p class="dates">{{ this.startDate }} - {{ this.endDate }}</p> </div> {{/each}} </section> {{/if}} {{#if skills}} <section class="skills"> <h2>Skills</h2> <ul> {{#each skills}} <li>{{ this.name }} ({{ this.experience }} years)</li> {{/each}} </ul> </section> {{/if}} {{#if projects}} <section class="projects"> <h2>Projects</h2> {{#each projects}} <div class="project"> <h3><a href="{{ this.url }}">{{ this.name }}</a></h3> <p>{{ this.description }}</p> </div> {{/each}} </section> {{/if}} {{#if certifications}} <section class="certifications"> <h2>Certifications</h2> {{#each certifications}} <div class="certification"> <p>{{ this.name }} - {{ this.organization }} ({{ this.date }})</p> </div> {{/each}} </section> {{/if}} {{#if languages}} <section class="languages"> <h2>Languages</h2> <p> {{#each languages}} {{ this.name }} ({{ this.level }}){{#unless @last}}, {{/unless}} {{/each}} </p> </section> {{/if}} </div> <style> .resume-container { font-family: sans-serif; color: #333; } h1, h2, h3 { color: #111; } h2 { border-bottom: 1px solid #ccc; padding-bottom: 5px; margin-top: 15px; } .dates { font-style: italic; color: #666; font-size: 0.9em; } section { margin-bottom: 15px; } </style>