Merge branch 'gh-pages' into yaml

This commit is contained in:
Joel Glovier
2017-03-28 12:40:48 -04:00
committed by GitHub
9 changed files with 293 additions and 100 deletions
+28 -6
View File
@@ -11,13 +11,18 @@
<!-- You can turn off the avatar in _config.yml by setting to false -->
{% if site.resume_avatar == 'true' %}
<img src="images/avatar.jpg" alt="my photo" class="avatar" itemprop="image">
<img src="images/avatar.jpg" alt="my photo" class="avatar no-print" itemprop="image">
{% endif %}
<!-- Your name is defined in the _config.yml file -->
<h1 class="header-name" itemprop="name">{{ site.resume_name }}</h1>
<div class="title-bar">
<!-- Contact buttons don't work in print, configure in the _config.yml file, remove "print-only" to display always. -->
<div class="header-contact-info print-only" itemprop="contact-info">
<p>{{ site.resume_header_contact_info }}</p>
</div>
<div class="title-bar no-print">
<!-- Your title is also defined in the _config.yml file -->
<h2 class="header-title" itemprop="jobTitle">{{ site.resume_title }}</h2>
@@ -26,14 +31,14 @@
{% include icon-links.html %}
</div>
<div class="executive-summary" itemprop="description">
<div class="executive-summary no-print" itemprop="description">
<p>This is the executive summary. You should write a few brief, concise, and meaningful sentences about yourself from a professional context, and your immediate career goals. Make the length appropriate for your needs, but K.I.S.S.</p>
</div>
{% if site.resume_looking_for_work == 'yes' %}
<a href="mailto:{{ site.resume_contact_email }}" class="contact-button" itemprop="email">Contact me</a>
<a href="mailto:{{ site.resume_contact_email }}" class="contact-button no-print" itemprop="email">Contact me</a>
{% elsif site.resume_looking_for_work == 'no' %}
<a class="contact-button not-looking">I'm not looking for work right now.</a>
<a class="contact-button not-looking no-print">I'm not looking for work right now.</a>
{% else %}
{% endif %}
@@ -66,6 +71,7 @@
<header class="section-header">
<h2>Education</h2>
</header>
{% for education in site.data.education %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/CollegeOrUniversity">
<h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
@@ -151,7 +157,7 @@
<p class="resume-item-copy">{{ association.summary }}</p>
</div>
{% endfor %}
</section>
<!-- end Associations -->
{% endif %}
@@ -176,6 +182,22 @@
<!-- end Links -->
{% endif %}
{% if site.resume_print_social_links %}
<!-- begin Print Social Links -->
<section class="content-section print-only">
<header class="section-header">
<h2>Social Links</h2>
</header>
<div class="resume-item">
{% include print-social-links.html %}
</div>
</section>
<!-- end Print Social Links -->
{% endif %}
<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">If this is your live resume, you can modify or remove this part. ;-)</p>