Sha256: 1692bf88a58806993c5b7125b4dcae68c7e6a1a766faaad01d2977ad7db10cee

Contents?: true

Size: 911 Bytes

Versions: 8

Compression:

Stored size: 911 Bytes

Contents

{% if cv.publications %}
  <div id="publications" class="entry">
    <header class="entry-header">
      <h3 class="entry-title">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

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-theme-basically-basic-1.3.1 _includes/cv/publications.html
jekyll-theme-basically-basic-1.3.0 _includes/cv/publications.html
jekyll-theme-basically-basic-1.2.0 _includes/cv/publications.html
jekyll-theme-basically-basic-1.1.3 _includes/cv/publications.html
jekyll-theme-basically-basic-1.1.2 _includes/cv/publications.html
jekyll-theme-basically-basic-1.1.1 _includes/cv/publications.html
jekyll-theme-basically-basic-1.1.0 _includes/cv/publications.html
jekyll-theme-basically-basic-1.0.1 _includes/cv/publications.html