Sha256: 7e8c29f854e089777ae5a3160264349ae1a379da4e2376e4f4c4a3cf39e6a357

Contents?: true

Size: 1.3 KB

Versions: 30

Compression:

Stored size: 1.3 KB

Contents

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

{% if username.size > 0 %}
  {% 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 == "email" %}
      {% assign name = "Email" %}
      {% assign icon = "icon-mail" %}
      {% assign prep = "mailto:" %}
    {% elsif 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 "//" or username contains "mailto:" %}
    {% 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>
{% endif %}

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
jekyll-theme-hydejack-9.2.1 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.2.0 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.9 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.8 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.7 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.6 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.5 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.4 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.3 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.2 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.1 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.1.0 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.0.4 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.0.3 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.0.2 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.0.1 _includes/components/social-list-item.html
jekyll-theme-hydejack-9.0.0 _includes/components/social-list-item.html
jekyll-theme-hydebetty-1.0.2 _includes/components/social-list-item.html
jekyll-theme-hydebetty-1.0.1 _includes/components/social-list-item.html
jekyll-theme-hydejack-8.5.2 _includes/components/social-list-item.html