Sha256: 740e67a2a5a86b22a9ad406fe2179058d1a03a2d0674c0acb6f8e810e042907a
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
{% if cv.education %} <div id="education" class="entry"> <header class="entry-header"> <h3 class="entry-title">{{ site.data.theme.t.cv_education | default: 'Education' }}</h3> </header> <div class="entry-content"> {% for e in cv.education %} {% if e.institution %} <h4 class="institution">{{ e.institution }}</h4> {% endif %} <div class="date"> {% if e.startDate %} <span class="startDate">{{ e.startDate }}</span> {% endif %} {% if e.endDate == '' %} <span class="endDate">{{ site.data.theme.t.present | default: 'Present' | prepend: ' — ' }}</span> {% else %} <span class="endDate">{{ e.endDate | prepend: ' — ' }}</span> {% endif %} </div> {% if e.area %} <div class="area"><strong>{{ e.area }}{% if e.studyType %}<span class="studyType">{{ e.studyType | prepend: ', ' }}</span>{% endif %}</strong>{% if e.gpa %}<span class="gpa">{{ e.gpa | prepend: ' (' | append: ' GPA)' }}</span>{% endif %}</div> {% endif %} {% if e.courses %} <h5 class="courses-title">{{ site.data.theme.t.cv_education_courses | default: 'Courses' }}</h5> <ul class="courses"> {% for course in e.courses %} <li>{{ course }}</li> {% endfor %} </ul> {% endif %} {% endfor %} </div> </div> {% endif %}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-basically-basic-1.4.5 | _includes/cv/education.html |