Updated theme, updated resume.json

This commit is contained in:
R. Eric Wheeler 2016-07-19 08:45:43 -07:00
parent c911b93f1c
commit 71beae1ed5
2 changed files with 20 additions and 19 deletions

View File

@ -4,25 +4,26 @@
<div class="resume-positions"> <div class="resume-positions">
{% for position in work %} {% for position in work %}
<h3 class="company uk-panel-title uk-animation-slide-left"> <h3 class="company uk-panel-title uk-animation-slide-left">
{{ position.company }} {{ position.company|raw }}
<small class="uk-align-right">
{{ position.startDate|date('M, Y') }} -
{% if position.endDate is not defined %}
Current
{% else %}
{{ position.endDate|date('M, Y') }}
{% endif %}
(~
{% if position.endDate is not defined %}
{{ position.startDate|date_diff }}
{% else %}
{{ position.startDate|date_diff(position.endDate) }}
{% endif %}
)
</small>
</h3> </h3>
<h5>{{ position.position }}</h5>
<h5>{{ position.position }}<small class="uk-display-block">
{{ position.startDate|date('M, Y') }} -
{% if position.endDate is not defined %}
Current
{% else %}
{{ position.endDate|date('M, Y') }}
{% endif %}
(~
{% if position.endDate is not defined %}
{{ position.startDate|date_diff }}
{% else %}
{{ position.startDate|date_diff(position.endDate) }}
{% endif %}
)
</small>
</h5>
<p class="summary uk-text-primary uk-text-large"> <p class="summary uk-text-primary uk-text-large">
{{ position.summary|raw }} {{ position.summary|raw }}
</p> </p>

View File

@ -39,7 +39,7 @@
}, },
"work": [ "work": [
{ {
"company": "Stanford University", "company": "Stanford University<br />Department of Electrical Engineering",
"position": "Developer / System Administrator", "position": "Developer / System Administrator",
"website": "https://ee.stanford.edu", "website": "https://ee.stanford.edu",
"startDate": "2007-05-27", "startDate": "2007-05-27",