spike out additional sections

This commit is contained in:
Joel Glovier
2015-07-22 13:57:06 -04:00
parent 932ef2e3f7
commit 88a31b5800
3 changed files with 90 additions and 5 deletions
-1
View File
@@ -36,7 +36,6 @@ Right now resume-template only has one theme. More are coming :soon: though. :he
- [ ] Add more theme styles - [ ] Add more theme styles
- [ ] Add screencaps to Readme - [ ] Add screencaps to Readme
- [ ] Add a "fork me on GitHub" thing - [ ] Add a "fork me on GitHub" thing
- [ ] Optimize mobile typography
- [ ] Finish docs - [ ] Finish docs
- [ ] Cleanup unused CSS - [ ] Cleanup unused CSS
+10
View File
@@ -14,12 +14,22 @@ resume_name: "Homer J. Simpson"
resume_title: "Nuclear Safety Inspector" resume_title: "Nuclear Safety Inspector"
resume_contact_email: resume_contact_email:
"homerjsimpson@youremailaddress.com" "homerjsimpson@youremailaddress.com"
# use "yes" to display the email contact button, # use "yes" to display the email contact button,
# "no" to display an "I'm not looking for work" message, # "no" to display an "I'm not looking for work" message,
# or remove the resume_looking_for_work option entirely # or remove the resume_looking_for_work option entirely
# to leave blank # to leave blank
resume_looking_for_work: "yes" resume_looking_for_work: "yes"
# Decide which sections to use; set to false or
# comment out to hide (Experience is not shown
# because it is the only required section)
resume_section_education: "true"
resume_section_projects: "true"
resume_section_skills: "true"
resume_section_recognition: "true"
resume_section_links: "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
resume_social_links: resume_social_links:
+80 -4
View File
@@ -40,7 +40,6 @@
</header> </header>
<!-- begin Experience --> <!-- begin Experience -->
<section class="content-section"> <section class="content-section">
<header class="section-header"> <header class="section-header">
@@ -78,11 +77,10 @@
</div><!-- end of resume-item --> </div><!-- end of resume-item -->
</section> </section>
<!-- end Experience --> <!-- end Experience -->
{% if site.resume_section_education %}
<!-- begin Education --> <!-- begin Education -->
<section class="content-section"> <section class="content-section">
<header class="section-header"> <header class="section-header">
@@ -96,8 +94,86 @@
</div> </div>
</section> </section>
<!-- end Education --> <!-- end Education -->
{% endif %}
{% if site.resume_section_projects %}
<!-- begin Projects -->
<section class="content-section">
<header class="section-header">
<h2>Projects</h2>
</header>
<div class="resume-item">
<h3 class="resume-item-title"><a href="http://donutlocator.io">donutfinder.io</a></h3>
<h4 class="resume-item-details">Founder & Primary Developer &bull; 2012 &mdash; Present</h4>
<p class="resume-item-copy">Donut Locator is an open source node/ember app that lets users find donuts within a defined radius from their home.</p>
</div>
<div class="resume-item">
<h3 class="resume-item-title">Springfield Donut Eater's User Group</h3>
<h4 class="resume-item-details">Co-Founder & Organizer &bull; 2007 &mdash; Present</h4>
<p class="resume-item-copy">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.</p>
</div>
</section>
<!-- end Projects -->
{% endif %}
{% if site.resume_section_skills %}
<!-- begin Skills -->
<section class="content-section">
<header class="section-header">
<h2>Skills</h2>
</header>
<div class="resume-item">
<h3 class="resume-item-title">Springfield College</h3>
<h4 class="resume-item-details">Associates Degree, Business Management &bull; 1984 &mdash; 1986</h4>
<p class="resume-item-copy">If you had any meaningful roles at college, feel free to write about them here.</p>
</div>
</section>
<!-- end Skills -->
{% endif %}
{% if site.resume_section_recognition %}
<!-- begin Recognition -->
<section class="content-section">
<header class="section-header">
<h2>Recognition</h2>
</header>
<div class="resume-item">
<h3 class="resume-item-title">Springfield College</h3>
<h4 class="resume-item-details">Associates Degree, Business Management &bull; 1984 &mdash; 1986</h4>
<p class="resume-item-copy">If you had any meaningful roles at college, feel free to write about them here.</p>
</div>
</section>
<!-- end Recognition -->
{% endif %}
{% if site.resume_section_links %}
<!-- begin Links -->
<section class="content-section">
<header class="section-header">
<h2>Links</h2>
</header>
<div class="resume-item">
<h3 class="resume-item-title">Springfield College</h3>
<h4 class="resume-item-details">Associates Degree, Business Management &bull; 1984 &mdash; 1986</h4>
<p class="resume-item-copy">If you had any meaningful roles at college, feel free to write about them here.</p>
</div>
</section>
<!-- end Links -->
{% endif %}
<footer class="page-footer"> <footer class="page-footer">
<p class="footer-line">Made by <a href="http://twitter.com/jglovier">@jglovier</a>. Fork me on <a href="https://github.com/jglovier/resume-template">GitHub</a>.</p> <p class="footer-line">Made by <a href="http://twitter.com/jglovier">@jglovier</a>. Fork me on <a href="https://github.com/jglovier/resume-template">GitHub</a>.</p>