Sha256: 101065ff5b873c2ec7e0097434ebfff96ad321b23488022d7780d91304cfec1f

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

{% assign author = page.author | default: page.authors[0] | default: site.author %}
{% if author %}
  {% if author.name %}
    {% assign author_name = author.name %}
  {% else %}
    {% if site.data.authors and site.data.authors[author] %}
      {% assign author_name = site.data.authors[author].name %}
    {% else %}
      {% assign author_name = author %}
    {% endif %}
  {% endif %}

  {% if author.picture %}
    {% assign author_picture = author.picture %}
  {% else %}
    {% if site.data.authors and site.data.authors[author] %}
      {% assign author_picture = site.data.authors[author].picture %}
    {% endif %}
    {% unless author_picture contains '://' %}{% assign author_picture = author_picture | relative_url %}{% endunless %}
  {% endif %}

  {% if author.twitter %}
    {% assign author_twitter = author.twitter %}
  {% else %}
    {% if site.data.authors and site.data.authors[author] %}
      {% assign author_twitter = site.data.authors[author].twitter %}
    {% else %}
      {% assign author_twitter = site.twitter_username %}
    {% endif %}
  {% endif %}
{% endif %}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-theme-basically-basic-1.3.1 _includes/author
jekyll-theme-basically-basic-1.3.0 _includes/author
jekyll-theme-basically-basic-1.2.0 _includes/author
jekyll-theme-basically-basic-1.1.3 _includes/author
jekyll-theme-basically-basic-1.1.2 _includes/author
jekyll-theme-basically-basic-1.1.1 _includes/author
jekyll-theme-basically-basic-1.1.0 _includes/author
jekyll-theme-basically-basic-1.0.1 _includes/author