Sha256: 50303f26b0a9ca5eb1f972e32e7f2f158d5f67c79f95cc66282f85e6312a871d

Contents?: true

Size: 1.78 KB

Versions: 2

Compression:

Stored size: 1.78 KB

Contents

<div class="flex justify-center md:justify-start pt-2 gap-6">
  {% assign rrss = site.rrss %} {% if rrss.email %}
  <a
    class="transition hover:scale-110 duration-300"
    href="mailto:{{ rrss.email }}"
  >
    <img
      class="h-6 w-6"
      src="{{'/assets/images/rrss/email.svg' | relative_url }}"
      alt="Email Icon"
    />
  </a>
  {% endif %} {% if rrss.github %}
  <a
    class="transition hover:scale-110 duration-300"
    href="{{ rrss.github }}"
    target="_blank"
  >
    <img
      class="h-6 w-6"
      src="{{'/assets/images/rrss/github-mark.svg' | relative_url }}"
      alt="Github Icon"
    />
  </a>
  {% endif %} {% if rrss.telegram %}
  <a
    class="transition hover:scale-110 duration-300"
    href="{{ rrss.telegram }}"
    target="_blank"
  >
    <img
      class="h-6 w-6"
      src="{{'/assets/images/rrss/telegram.svg' | relative_url }}"
      alt="Telegram Icon"
    />
  </a>
  {% endif %} {% if rrss.stackoverflow %}
  <a
    class="transition hover:scale-110 duration-300"
    href="{{ rrss.stackoverflow }}"
    target="_blank"
  >
    <img
      class="h-6 w-6"
      src="{{'/assets/images/rrss/stack-overflow.svg' | relative_url }}"
      alt="StackOverflow Icon"
    />
  </a>
  {% endif %} {% if rrss.discord %}
  <a
    class="transition hover:scale-110 duration-300"
    href="{{ rrss.discord }}"
    target="_blank"
  >
    <img
      class="h-6 w-6"
      src="{{'/assets/images/rrss/discord.svg' | relative_url }}"
      alt="Discord Icon"
    />
  </a>
  {% endif %} {% if rrss.mastodon %}
  <a
    class="transition hover:scale-110 duration-300"
    rel="me"
    href="{{ rrss.mastodon }}"
    target="_blank"
  >
    <img
      class="h-6 w-6"
      src="{{'/assets/images/rrss/mastodon.svg' | relative_url }}"
      alt="Mastodon Icon"
    />
  </a>
  {% endif %}
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
awesome-jekyll-theme-0.3.1 _includes/contact_channels.html
awesome-jekyll-theme-0.3.0 _includes/contact_channels.html