Sha256: f01cdd22745aa34cd3ed4387dc5ef511e1b32720a023f43b8c6785a36268e83b

Contents?: true

Size: 882 Bytes

Versions: 6

Compression:

Stored size: 882 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

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-basically-basic-1.4.4 _includes/cv/publications.html
jekyll-theme-basically-basic-1.4.3 _includes/cv/publications.html
jekyll-theme-basically-basic-1.4.2 _includes/cv/publications.html
jekyll-theme-basically-basic-1.4.1 _includes/cv/publications.html
jekyll-theme-basically-basic-1.4.0 _includes/cv/publications.html
jekyll-theme-basically-basic-1.0.0 _includes/cv/publications.html