Sha256: 4e73d2e8a109dd37d77dbe2f01774a1f1ca3e835a34697b3af8da6266ecadb97
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 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 }}"> <span class="{{ icon }}"></span> <span class="sr-only">{{ name }}</span> </a> </li>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-hydejack-6.6.1 | _includes/social-list-item.html |
jekyll-theme-hydejack-6.6.0 | _includes/social-list-item.html |
jekyll-theme-hydejack-6.5.0 | _includes/social-list-item.html |