Newer
Older
express-blog / src / views / pages / resume.handlebars
{{!-- overrideCSS target="classes" prop="body" value="resume-pdf-layout" --}}
{{!-- overrideCSS target="classes" prop="layout" value="resume-container" --}}
{{!-- overrideCSS target="classes" prop="container" value="resume-paper" --}}

{{#section "styles"}}
<link rel="stylesheet" href="{{baseUrl}}/static/css/resume.css">
{{/section}}

{{#section "scripts"}}
<script src="/static/js/printButton.js"></script>
{{/section}}


<div class="no-print">
    <button id="print-button" class="btn-primary">Print to PDF</button>
    <button id="print-preview-button" class="btn-primary">Print Preview</button>
</div>

<h1 class="resume-h1">{{name}}</h1>
<div class="resume-contact-bar">
  {{#with demographics}}
    {{#if city}}{{city}}, {{/if}}
    {{#if state}}{{state}}{{/if}}
    {{#if zip}} {{zip}}{{/if}}
  {{/with}}
  {{#if contact_information.cell}} | {{contact_information.cell}}{{/if}}
  {{#if contact_information.email}} | {{contact_information.email}}{{/if}}
  {{#if website}}
    | <a href="{{website}}" class="resume-link">{{website}}</a>
  {{/if}}
</div>

<section>
  <h2 class="resume-h2">Education</h2>
  {{#each education}}
  <div class="resume-entry">
    <div class="resume-entry-header">
      <span>{{institution}}</span>
      <span>{{#if from}}{{from}} — {{/if}}{{to}}</span>
    </div>
    <div class="resume-sub-header">
      <span>{{degree}} in {{program}}</span>
      <span>{{#if city}}{{city}}, {{state}}{{/if}}</span>
    </div>
  </div>
  {{/each}}
</section>

<section>
  <h2>Experience</h2>
  {{#each work_history}}
  <div class="resume-entry">
    <div class="resume-entry-header">
      <span>{{position}}</span>
      <span>{{#if from}}{{from}} — {{/if}}{{to}}</span>
    </div>
    <div class="resume-sub-header">
      <span>{{company}}</span>
      <span>{{#if state}}{{#if city}}{{city}}, {{state}}{{/if}}{{/if}}</span>
    </div>
  </div>
  {{/each}}
</section>