Add Outside Interests section

This commit is contained in:
Antony Gelberg
2017-06-06 00:27:39 +03:00
committed by Antony Gelberg
parent ca55496266
commit 90b949ebbf
3 changed files with 25 additions and 0 deletions
+1
View File
@@ -32,6 +32,7 @@ resume_section_skills: true
resume_section_recognition: true resume_section_recognition: true
resume_section_links: true resume_section_links: true
resume_section_associations: true resume_section_associations: true
# resume_section_interests: true
# Resume social links # Resume social links
# uncomment the options you wish to display, and add your own URL # uncomment the options you wish to display, and add your own URL
+4
View File
@@ -0,0 +1,4 @@
# Interests
- description: Drinking beer.
- description: Grand Funk Railroad.
- description: Flanders' lawnmower.
+20
View File
@@ -162,6 +162,26 @@
<!-- end Associations --> <!-- end Associations -->
{% endif %} {% 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 %} {% if site.resume_section_links %}
<!-- begin Links --> <!-- begin Links -->
<section class="content-section"> <section class="content-section">