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