From ab39248b7a3cbffba652317ef01c83c45421a801 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Tue, 28 Jun 2016 11:57:57 +0100 Subject: [PATCH] Experience data filled from YAML markdown --- _data/experience.yml | 19 +++++++++++++++++++ _layouts/resume.html | 33 ++++++--------------------------- 2 files changed, 25 insertions(+), 27 deletions(-) create mode 100644 _data/experience.yml diff --git a/_data/experience.yml b/_data/experience.yml new file mode 100644 index 0000000..5813be5 --- /dev/null +++ b/_data/experience.yml @@ -0,0 +1,19 @@ +# Jobs +# Springfield Nuclear Power Plant +- position: Safety Inspector + company: Springfield Nuclear Power Plant + duration: Nov, 1980 — Present + summary: Write about your core competencies in one or two sentences describing your position. If you held the position for a long time, it could be a longer section, including a couple bullet points + +# Windmill Crank Operator +- position: Safety Inspector + company: Sir Putt-A-Lot's Merrie Olde Fun Centre + duration: Jun, 1978 — Sept, 1979 + summary: If your stint was shorter, feel free to be brief and just call out the most meaningful points of your role. Be concise, and be meaninful. The person reading just needs enough to want to talk to you more about your experience. + + +# Front Desk Attendant +- position: Front Desk Attendant + company: Simpson Lazer Tag + duration: Jun, 1975 — May, 1978 + summary: Boy, when Marge first told me she was going to the Police Academy, I thought it would be fun and exciting, you know, like the movie... Spaceballs. But instead, it's been painful and disturbing, like the movie Police Academy. diff --git a/_layouts/resume.html b/_layouts/resume.html index 40e1fff..adbd05b 100644 --- a/_layouts/resume.html +++ b/_layouts/resume.html @@ -47,36 +47,15 @@

Experience

+ {% for job in site.data.experience %}
-

Springfield Nuclear Power Plant

-

Safety Inspector • Nov, 1980 — Present

-

Write about your core competencies in one or two sentences describing your position. If you held the position for a long time, it could be a longer section, including a couple bullet points:

- -

If you're going to copy paste markup, or edit it, just be sure to keep the appropriate classnames on your new elements for styling purposes.

- +

{{ job.position }}

+

{{ job.company }}{{ job.duration }}


+

{{ job.summary }}

- - -
-

Sir Putt-A-Lot's Merrie Olde Fun Centre

-

Windmill Crank Operator • Jun, 1978 — Sept, 1979

-

If your stint was shorter, feel free to be brief and just call out the most meaningful points of your role. Be concise, and be meaninful. The person reading just needs enough to want to talk to you more about your experience.

- -
- - -
-

Simpson Lazer Tag

-

Front Desk Attendant • Jun, 1975 — May, 1978

-

Boy, when Marge first told me she was going to the Police Academy, I thought it would be fun and exciting, you know, like the movie... Spaceballs. But instead, it's been painful and disturbing, like the movie Police Academy.

- -
- + {% endfor %} + {% endif %}