From 90b949ebbfca2ebc14de40757874a868bf138c10 Mon Sep 17 00:00:00 2001 From: Antony Gelberg Date: Tue, 6 Jun 2017 00:27:39 +0300 Subject: [PATCH] Add Outside Interests section --- _config.yml | 1 + _data/interests.yml | 4 ++++ _layouts/resume.html | 20 ++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 _data/interests.yml diff --git a/_config.yml b/_config.yml index fbef056..f66723c 100644 --- a/_config.yml +++ b/_config.yml @@ -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 diff --git a/_data/interests.yml b/_data/interests.yml new file mode 100644 index 0000000..6aa488a --- /dev/null +++ b/_data/interests.yml @@ -0,0 +1,4 @@ +# Interests +- description: Drinking beer. +- description: Grand Funk Railroad. +- description: Flanders' lawnmower. diff --git a/_layouts/resume.html b/_layouts/resume.html index c0db2be..cebd4da 100644 --- a/_layouts/resume.html +++ b/_layouts/resume.html @@ -162,6 +162,26 @@ {% endif %} + {% if site.resume_section_interests %} + +
+ +
+

Outside Interests

+
+ +
+
    + {% for interest in site.data.interests %} +
  • {{ interest.description }}
  • + {% endfor %} +
+
+ +
+ + {% endif %} + {% if site.resume_section_links %}