Merge pull request #33 from antgel/interests
Add Outside Interests section
This commit is contained in:
@@ -32,6 +32,7 @@ resume_section_skills: true
|
||||
resume_section_recognition: true
|
||||
resume_section_links: true
|
||||
resume_section_associations: true
|
||||
# resume_section_interests: true
|
||||
|
||||
# Resume social links
|
||||
# uncomment the options you wish to display, and add your own URL
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
# Interests
|
||||
- description: Drinking beer.
|
||||
- description: Grand Funk Railroad.
|
||||
- description: Flanders' lawnmower.
|
||||
@@ -162,6 +162,26 @@
|
||||
<!-- end Associations -->
|
||||
{% endif %}
|
||||
|
||||
{% if site.resume_section_interests %}
|
||||
<!-- begin Interests -->
|
||||
<section class="content-section">
|
||||
|
||||
<header class="section-header">
|
||||
<h2>Outside Interests</h2>
|
||||
</header>
|
||||
|
||||
<div class="resume-item">
|
||||
<ul class="resume-item-list">
|
||||
{% for interest in site.data.interests %}
|
||||
<li>{{ interest.description }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<!-- end Interests -->
|
||||
{% endif %}
|
||||
|
||||
{% if site.resume_section_links %}
|
||||
<!-- begin Links -->
|
||||
<section class="content-section">
|
||||
|
||||
Reference in New Issue
Block a user