Sha256: 390c6041650362448a197d8fc682ebcd0ac9c7ddce5f14376166bd3927107dfd
Contents?: true
Size: 1.4 KB
Versions: 8
Compression:
Stored size: 1.4 KB
Contents
{% if cv.work %} <div id="work" class="entry"> <header class="entry-header"> <h3 class="entry-title">Work</h3> </header> <div class="entry-content"> {% for w in cv.work %} {% if w.company %} <h3 class="name"> {% if w.website %} <a href="{{ w.website }}">{{ w.company }}</a> {% else %} {{ w.company }} {% endif %} </h3> {% endif %} {% if w.position %} <h4 class="position">{{ w.position }}</h4> {% endif %} <div class="date"> {% if w.startDate %} <span class="startDate">{{ w.startDate }}</span> {% endif %} {% if w.endDate == '' %} <span class="endDate">{{ site.data.theme.t.present | default: 'Present' | prepend: ' — ' }}</span> {% else %} <span class="endDate">{{ w.endDate | prepend: ' — ' }}</span> {% endif %} </div> {% if w.summary %} <div class="summary"> <p>{{ w.summary }}</p> </div> {% endif %} {% if w.highlights %} <ul class="highlights"> {% for highlight in w.highlights %} <li>{{ highlight }}</li> {% endfor %} </ul> {% endif %} {% endfor %} </div> </div> {% endif %}
Version data entries
8 entries across 8 versions & 1 rubygems