Skip to content

Commit

Permalink
refactor: update languages and interests sections
Browse files Browse the repository at this point in the history
  • Loading branch information
NuclearRedeye committed Jun 12, 2024
1 parent d9d49fa commit bbd6984
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 36 deletions.
21 changes: 0 additions & 21 deletions src/partials/interests.hbs

This file was deleted.

13 changes: 0 additions & 13 deletions src/partials/languages.hbs

This file was deleted.

33 changes: 33 additions & 0 deletions src/partials/meta.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{{#if resume.interests.length}}
<section class="meta">
{{> section-heading icon="asterisk" value="Meta"}}
<div class="grid">
{{#if resume.languages.length}}
<div class="column end">
<h4 class="bold capitalize">Languages</h4>
</div>
<div class="row wrap minimal">
{{#each resume.languages}}
<h6 class="chip">
{{language}}
{{#if fluency}}
({{fluency}})
{{/if}}
</h6>
{{/each}}
</div>
{{/if}}

{{#if resume.interests.length}}
<div class="column end">
<h4 class="bold capitalize">Interests</h4>
</div>
<div class="row wrap minimal">
{{#each resume.interests}}
<h6 class="chip">{{name}}</h6>
{{/each}}
</div>
{{/if}}
</div>
</section>
{{/if}}
3 changes: 1 addition & 2 deletions src/resume.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@
{{> work }}
{{> education }}
{{> references }}
{{> meta }}
<!--
{{> projects }}
{{> languages }}
{{> interests }}
{{> volunteer }}
{{> awards }}
{{> publications }}
Expand Down
1 change: 1 addition & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ section {
grid-template-rows: auto;
column-gap: var(--gap-medium);
row-gap: var(--gap-medium);
justify-content: start;
}

.top {
Expand Down

0 comments on commit bbd6984

Please sign in to comment.