Sha256: 13b6d3a8f8c33e0d50b0f04566b23c415be87e2ec3142fd2cb920ce03587f730

Contents?: true

Size: 1.04 KB

Versions: 14

Compression:

Stored size: 1.04 KB

Contents

{% assign platform = include.platform | downcase %}
{% assign username = include.username %}

{% assign = data_social = site.data.social[platform] | default:site.data_social[platform] %}

{% assign name = data_social.name | default:include.platform %}
{% assign icon = data_social.icon | default:'icon-link' %}
{% assign app = data_social.append %}
{% assign prep = data_social.prepend %}

{% unless data_social %}
  {% if platform == "twitter" %}
    {% assign name = "Twitter" %}
    {% assign icon = "icon-twitter" %}
    {% assign prep = "https://twitter.com/" %}
  {% elsif platform == "github" %}
    {% assign name = "GitHub" %}
    {% assign icon = "icon-github" %}
    {% assign prep = "https://github.com/" %}
  {% endif %}
{% endunless %}

{% if username contains "//" %}
  {% assign url = username %}
{% else %}
  {% assign url = username | prepend:prep | append:app %}
{% endif %}

<li>
  <a href="{{ url }}" title="{{ name }}" class="no-mark-external">
    <span class="{{ icon }}"></span>
    <span class="sr-only">{{ name }}</span>
  </a>
</li>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-7.5.2 _includes/social-list-item.html
jekyll-theme-hydejack-7.5.1 _includes/social-list-item.html
jekyll-theme-hydejack-7.5.0 _includes/social-list-item.html
jekyll-theme-hydejack-7.4.2 _includes/social-list-item.html
jekyll-theme-hydejack-7.4.1 _includes/social-list-item.html
jekyll-theme-hydejack-7.4.0 _includes/social-list-item.html
jekyll-theme-hydejack-7.3.0 _includes/social-list-item.html
jekyll-theme-hydejack-7.2.0 _includes/social-list-item.html
jekyll-theme-hydejack-7.1.1 _includes/social-list-item.html
jekyll-theme-hydejack-7.1.0 _includes/social-list-item.html
jekyll-theme-hydejack-7.0.1 _includes/social-list-item.html
jekyll-theme-hydejack-7.0.0 _includes/social-list-item.html
jekyll-theme-hydejack-7.0.0.pre.beta.1 _includes/social-list-item.html
jekyll-theme-hydejack-7.0.0.pre.beta.0 _includes/social-list-item.html