Sha256: 5abbb0fa860683d90975d49288addf5c5e75be05c600613520ab0e59a1868a8c
Contents?: true
Size: 935 Bytes
Versions: 1
Compression:
Stored size: 935 Bytes
Contents
{% if cv.publications %} <div id="publications" class="entry"> <header class="entry-header"> <h3 class="entry-title">{{ site.data.theme.t.cv_publications | default: 'Publications' }}</h3> </header> <div class="entry-content"> {% for p in cv.publications %} {% if p.name %} <h4 class="title"> {% if p.website %} <a href="{{ p.website }}">{{ p.name }}</a> {% else %} {{ p.name }} {% endif %} </h4> {% endif %} {% if p.releaseDate %} <div class="date">{{ p.releaseDate }}</div> {% endif %} {% if p.publisher %} <h5 class="publisher">{{ p.publisher | prepend: 'Published by ' }}</h5> {% endif %} {% if p.summary %} <div class="summary">{{ p.summary | markdownify }}</div> {% 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/publications.html |