Skip to content

Commit

Permalink
remove inline styles added in mmistakes#15
Browse files Browse the repository at this point in the history
In my haste to get mmistakes#15 merged (after letting it wait in limbo for a very long time) I overlooked the inline styles added in that PR. This commit moves them into the CSS.
  • Loading branch information
Joel Glovier committed Jun 8, 2017
1 parent 7396fd7 commit 7ce0a68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _layouts/resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ <h2>Experience</h2>
{% for job in site.data.experience %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
<h4 class="resume-item-details" itemprop="description"><span style="display: block; float:left;">{{ job.position }}</span><span style="display: block; float:right;">{{ job.duration }}</span></h4><br/>
<p class="resume-item-copy" style="clear: both;">{{ job.summary }}</p>
<h4 class="resume-item-details" itemprop="description">{{ job.position }} &bull; {{ job.duration }}</h4>
<p class="resume-item-copy">{{ job.summary }}</p>
</div><!-- end of resume-item -->
{% endfor %}

Expand All @@ -75,7 +75,7 @@ <h2>Education</h2>
{% 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>
<h4 class="resume-item-details group" itemprop="description"><span style="display: block; float:left;">{{ education.degree }}</span><span style="display: block; float:right;">{{ education.year }}</span></h4>
<h4 class="resume-item-details group" itemprop="description">{{ education.degree }} &bull; {{ education.year }}</h4>
<h5 class="resume-item-details award-title" itemprop="description">{{ education.awards }}</h5>
<p class="resume-item-copy">{{ education.summary }}</p>
</div>
Expand All @@ -95,8 +95,8 @@ <h2>Projects</h2>
{% for project in site.data.projects %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{{ project.project }}</h3>
<h4 class="resume-item-details" itemprop="description"><span style="display: block; float:left;">{{ project.role }}</span><span style="display: block; float:right;">{{ project.duration }}</span></h4><br/>
<p class="resume-item-copy" style="clear: both;">{{ project.description }}</p>
<h4 class="resume-item-details" itemprop="description">{{ project.role }} &bull; {{ project.duration }}</h4>
<p class="resume-item-copy">{{ project.description }}</p>
</div>
{% endfor %}

Expand Down

0 comments on commit 7ce0a68

Please sign in to comment.