Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Matthews authored Jun 27, 2018
1 parent 2a73cbe commit 6b3f3d8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,36 +112,36 @@ <h4>{{ position.name }}</h4>
<br/>
<div class="card">
<div class="card-header text-center">
<h2 class="my-accent-font">Education</h2>
<h2 class="my-accent-font">Certifications</h2>
</div>
<div class="card-body">
{% for school in site.data.schools %}
{% for certification in site.data.certifications %}
<div class="row align-items-center">
<div class="col-6 col-sm-4 order-md-2">
<a href="{{ school.url }}" target="_blank">
<img class="img-fluid rounded" src="{{ school.image | relative_url }}">
<a href="{{ certification.url }}" target="_blank">
<img class="img-fluid rounded" src="{{ certification.image | relative_url }}">
</a>
</div>
<div class="col-18 col-md-4 order-md-4">
<p class="text-muted text-right">{{ school.location }}</p>
<p class="text-muted text-right">{{ certification.location }}</p>
</div>
<div class="col-24 col-md order-md-3">
<h3 class="text-nowrap">{{ school.name }}</h3>
<h3 class="text-nowrap">{{ certification.name }}</h3>
</div>
<div class="col-24 col-md-5 order-md-1">
<p class="text-muted"><small>{{ school.dates }}</small></p>
<p class="text-muted"><small>{{ certification.dates }}</small></p>
</div>
</div>
<div class="row align-items-center">
<div class="col-24 col-md offset-md-9">
<ul>
{% for point in school.points %}
{% for point in certification.points %}
<li>{{ point }}</li>
{% endfor %}
</ul>
</div>
</div>
{% if school != site.data.schools.last %}
{% if certification != site.data.certification.last %}
<hr/>
{% endif %}
{% endfor %}
Expand Down

0 comments on commit 6b3f3d8

Please sign in to comment.