Add spacing between stacked section items
This commit is contained in:
parent
018dd0fad0
commit
3757fa96c5
|
@ -1,9 +1,9 @@
|
||||||
{{#if resume.awards.length}}
|
{{#if resume.awards.length}}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<h3>Awards</h3>
|
<h3>Awards</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.awards}}
|
{{#each resume.awards}}
|
||||||
<div>
|
<article>
|
||||||
<div class="spaced-list">
|
<div class="spaced-list">
|
||||||
<h4>{{title}}</h4>
|
<h4>{{title}}</h4>
|
||||||
{{#date}}
|
{{#date}}
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
{{#summary}}
|
{{#summary}}
|
||||||
<p>{{.}}</p>
|
<p>{{.}}</p>
|
||||||
{{/summary}}
|
{{/summary}}
|
||||||
</div>
|
</article>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{#if resume.education.length}}
|
{{#if resume.education.length}}
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<h3>Education</h3>
|
<h3>Education</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.education}}
|
{{#each resume.education}}
|
||||||
<div>
|
<article>
|
||||||
<div class="spaced-list">
|
<div class="spaced-list">
|
||||||
<h4>{{institution}}</h4>
|
<h4>{{institution}}</h4>
|
||||||
<span>
|
<span>
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
{{/courses}}
|
{{/courses}}
|
||||||
</ul>
|
</ul>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</article>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{#if resume.projects.length}}
|
{{#if resume.projects.length}}
|
||||||
<section id="projects">
|
<section id="projects">
|
||||||
<h3>Projects</h3>
|
<h3>Projects</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.projects}}
|
{{#each resume.projects}}
|
||||||
<div>
|
<article>
|
||||||
<div class="spaced-list">
|
<div class="spaced-list">
|
||||||
<h4>{{name}}</h4>
|
<h4>{{name}}</h4>
|
||||||
<span>
|
<span>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
{{/highlights}}
|
{{/highlights}}
|
||||||
</ul>
|
</ul>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</article>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{#if resume.publications.length}}
|
{{#if resume.publications.length}}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<h3>Publications</h3>
|
<h3>Publications</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.publications}}
|
{{#each resume.publications}}
|
||||||
<div>
|
<article>
|
||||||
<div class="spaced-list">
|
<div class="spaced-list">
|
||||||
<h4>{{name}}</h4>
|
<h4>{{name}}</h4>
|
||||||
{{#releaseDate}}
|
{{#releaseDate}}
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
{{#summary}}
|
{{#summary}}
|
||||||
<p>{{.}}</p>
|
<p>{{.}}</p>
|
||||||
{{/summary}}
|
{{/summary}}
|
||||||
</div>
|
</article>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{{#if resume.references.length}}
|
{{#if resume.references.length}}
|
||||||
<section id="references">
|
<section id="references">
|
||||||
<h3>References</h3>
|
<h3>References</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.references}}
|
{{#each resume.references}}
|
||||||
{{#if reference}}
|
{{#if reference}}
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{#if resume.volunteer.length}}
|
{{#if resume.volunteer.length}}
|
||||||
<section id="volunteer">
|
<section id="volunteer">
|
||||||
<h3>Volunteer</h3>
|
<h3>Volunteer</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.volunteer}}
|
{{#each resume.volunteer}}
|
||||||
<div>
|
<article>
|
||||||
<div class="spaced-list">
|
<div class="spaced-list">
|
||||||
<h4>{{organization}}</h4>
|
<h4>{{organization}}</h4>
|
||||||
<span>
|
<span>
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
{{/highlights}}
|
{{/highlights}}
|
||||||
</ul>
|
</ul>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</article>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{#if resume.work.length}}
|
{{#if resume.work.length}}
|
||||||
<section id="work">
|
<section id="work">
|
||||||
<h3>Work</h3>
|
<h3>Work</h3>
|
||||||
<div>
|
<div class="stack">
|
||||||
{{#each resume.work}}
|
{{#each resume.work}}
|
||||||
<div>
|
<article>
|
||||||
<div class="spaced-list">
|
<div class="spaced-list">
|
||||||
<h4>{{name}}</h4>
|
<h4>{{name}}</h4>
|
||||||
<span>
|
<span>
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
{{/highlights}}
|
{{/highlights}}
|
||||||
</ul>
|
</ul>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</article>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in New Issue