From ab39248b7a3cbffba652317ef01c83c45421a801 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Tue, 28 Jun 2016 11:57:57 +0100 Subject: [PATCH 1/4] 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 %} From 7ce617ca4da63dd953e7b711dac38a22f0685f81 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Tue, 28 Jun 2016 12:00:07 +0100 Subject: [PATCH 2/4] Removed CNAME file --- CNAME | 1 - 1 file changed, 1 deletion(-) delete mode 100644 CNAME diff --git a/CNAME b/CNAME deleted file mode 100644 index 16d12be..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -resume-template.joelglovier.com \ No newline at end of file From 631957eec98f1546ff6cbcf1d6d223cf5027fc43 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Wed, 29 Jun 2016 12:01:03 +0100 Subject: [PATCH 3/4] Added education as a YAML file --- CNAME | 1 + _data/education.yml | 6 ++++++ _layouts/resume.html | 18 ++++++++++-------- 3 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 CNAME create mode 100644 _data/education.yml diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..e2e8746 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +resume-template.joelglovier.com diff --git a/_data/education.yml b/_data/education.yml new file mode 100644 index 0000000..35aac60 --- /dev/null +++ b/_data/education.yml @@ -0,0 +1,6 @@ +# Degree +- degree: Associates Degree, Business Management + uni: Springfield College + year: 1984 — 1986 + awards: Quickest to fall asleep + summary: If you had any meaningful roles at college, feel free to write about them here diff --git a/_layouts/resume.html b/_layouts/resume.html index adbd05b..714ab02 100644 --- a/_layouts/resume.html +++ b/_layouts/resume.html @@ -50,8 +50,8 @@ {% for job in site.data.experience %}
-

{{ job.position }}

-

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


+

{{ job.company }}

+

{{ job.position }}{{ job.duration }}


{{ job.summary }}

{% endfor %} @@ -60,24 +60,26 @@ {% endif %} + {% if site.resume_section_education %}
-

Education

- + {% for education in site.data.education %}
-

Springfield College

-

Associates Degree, Business Management • 1984 — 1986

-

If you had any meaningful roles at college, feel free to write about them here.

+

{{ education.uni }}

+

{{ education.degree }}{{ education.year }}

+
{{ education.awards }}
+

{{ education.summary }}

- + {% endfor %}
{% endif %} + {% if site.resume_section_projects %}
From 1dcbb1d328016296c6aedeaf3002bc18b5f15a06 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Wed, 29 Jun 2016 12:38:04 +0100 Subject: [PATCH 4/4] YAML files for association, links, projects, recognition and skills --- _data/associations.yml | 12 +++++++ _data/links.yml | 5 +++ _data/projects.yml | 12 +++++++ _data/recognitions.yml | 15 ++++++++ _data/skills.yml | 12 +++++++ _layouts/resume.html | 82 ++++++++++++++---------------------------- 6 files changed, 83 insertions(+), 55 deletions(-) create mode 100644 _data/associations.yml create mode 100644 _data/links.yml create mode 100644 _data/projects.yml create mode 100644 _data/recognitions.yml create mode 100644 _data/skills.yml diff --git a/_data/associations.yml b/_data/associations.yml new file mode 100644 index 0000000..56562b8 --- /dev/null +++ b/_data/associations.yml @@ -0,0 +1,12 @@ +# Associations +- organisation: Beer for the World + role: Volunteer + year: 2008 — Present + summary: Organized fund drives and participated in fundraising events for the benefit of families in third world countries without proper access to malt beverages. + + +- organisation: Springfield Nuclear Workers Labor Union + role: Member in Good Standin + year: 1994 — Present + summary: Founding member of the local nuclear workers labor union. + diff --git a/_data/links.yml b/_data/links.yml new file mode 100644 index 0000000..be7a86e --- /dev/null +++ b/_data/links.yml @@ -0,0 +1,5 @@ +# links +- url: "#" + description: Springfield Poker Club +- url: "#" + description: Springfield Donut Eater's User Group diff --git a/_data/projects.yml b/_data/projects.yml new file mode 100644 index 0000000..b0959c3 --- /dev/null +++ b/_data/projects.yml @@ -0,0 +1,12 @@ +# Projects +# donutfinder.io +- project: donutfinder.io + role: Founder & Primary Developer + duration: 2012 — Present + description: Donut Locator is an open source node/ember app that lets users find donuts within a defined radius from their home. + +#Springfield Donut Eater's User Group +- project: Springfield Donut Eater's User Group + role: Co-Founder & Organizer + duration: 2007 — Present + description: DEUG is a local monthly meetup in Springfield where we share all the latest tips and tricks for dat donut lifestyle. I organize the group, and typically eat most of the donuts. diff --git a/_data/recognitions.yml b/_data/recognitions.yml new file mode 100644 index 0000000..858ef21 --- /dev/null +++ b/_data/recognitions.yml @@ -0,0 +1,15 @@ +# Recognitions +- award: Outstanding Achievement + organisation: Springfield Nuclear Power Plant + year: 2010 + summary: Awarded for stopping a nuclear meltdown, even though I also started it. + +- award: Duff Beer Customer of the year + organisation: + year: 1997 — 2001, 2003, 2008 — 2012 + summary: Honored by Duff Beer for being an outstanding customer several years straight. Qualifications included most beer consumed at a bar, most beer purchased, and most beer ralphed. + +- award: Moe's Patron of the Month + organisation: + year: 12/2001, 8/2004 + summary: Specifically this prestigious awarded twice for stopping a robber with my belly. diff --git a/_data/skills.yml b/_data/skills.yml new file mode 100644 index 0000000..d7f8fe7 --- /dev/null +++ b/_data/skills.yml @@ -0,0 +1,12 @@ +# Skills +# Donut design +- skill: Donut design + description: Sprinkle art, icing design, eclair management, taste testing, donut/coffee pairing research + +# Craft beer brewing +- skill: Craft beer brewing + description: Hops inspection, brew testing, distribution management, bottle label design, festival and event management + +# Family leadership +- skill: Family leadership + description: Bread winning, conflict resolution, couch inspection, TV longevity testing diff --git a/_layouts/resume.html b/_layouts/resume.html index 714ab02..5ec6577 100644 --- a/_layouts/resume.html +++ b/_layouts/resume.html @@ -48,7 +48,6 @@ {% for job in site.data.experience %} -

{{ job.company }}

{{ job.position }}{{ job.duration }}


@@ -83,23 +82,18 @@ {% if site.resume_section_projects %}
-

Projects

-
-

donutfinder.io

-

Founder & Primary Developer • 2012 — Present

-

Donut Locator is an open source node/ember app that lets users find donuts within a defined radius from their home.

+ {% for project in site.data.projects %} +
+

{{ project.project }}

+

{{ project.role }}{{ project.duration }}


+

{{ project.description }}

- -
-

Springfield Donut Eater's User Group

-

Co-Founder & Organizer • 2007 — Present

-

DEUG is a local monthly meetup in Springfield where we share all the latest tips and tricks for dat donut lifestyle. I organize the group, and typically eat most of the donuts.

-
- + {% endfor %} +
{% endif %} @@ -111,22 +105,13 @@

Skills

- + {% for skill in site.data.skills %}
-

Donut design

-

Sprinkle art, icing design, eclair management, taste testing, donut/coffee pairing research

+

{{ skill.skill }}

+

{{ skill.description }}

- -
-

Craft beer brewing

-

Hops inspection, brew testing, distribution management, bottle label design, festival and event management

-
- -
-

Family leadership

-

Bread winning, conflict resolution, couch inspection, TV longevity testing

-
- + {% endfor %} +
{% endif %} @@ -138,24 +123,14 @@

Recognition

- + + {% for recognition in site.data.recognitions %}
-

Springfield Nuclear Power Plant

-

Outstanding Achievement • 2010

-

Awarded for stopping a nuclear meltdown, even though I also started it.

-
- -
-

Duff Beer Customer of the year

-

1997 — 2001, 2003, 2008 — 2012

-

Honored by Duff Beer for being an outstanding customer several years straight. Qualifications included most beer consumed at a bar, most beer purchased, and most beer ralphed.

-
- -
-

Moe's Patron of the Month

-

12/2001, 8/2004

-

Specifically this prestigious awarded twice for stopping a robber with my belly.

+

{{ recognition.award }}

+

{{ recognition.organisation }} • {{ recognition.year }}

+

{{ recognition.summary }}

+ {% endfor %} @@ -169,18 +144,14 @@

Associations

+ {% for association in site.data.associations %}
-

Beer for the World

-

Volunteer • 2008 — Present

-

Organized fund drives and participated in fundraising events for the benefit of families in third world countries without proper access to malt beverages.

+

{{ association.organisation }}

+

{{ association.role }} • {{ association.year }}

+

{{ association.summary }}

- -
-

Springfield Nuclear Workers Labor Union

-

Member in Good Standin • 1994 — Present

-

Founding member of the local nuclear workers labor union.

-
- + {% endfor %} + {% endif %} @@ -195,8 +166,9 @@