-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-icon-links.html
53 lines (48 loc) · 1.58 KB
/
sidebar-icon-links.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<nav id="sidebar-icon-links">
{% if site.hydeout.repo %}
<a id="github-link"
class="icon" title="Github Project" aria-label="Github Project"
href="{{ site.hydeout.repo }}">
{% include svg/github.svg %}
</a>
<a id="github-download-link"
class="icon" title="Download" aria-label="Download"
href="{{ site.hydeout.repo }}/archive/v{{ site.hydeout.version }}.zip">
{% include svg/download.svg %}
</a>
{% endif %}
<a id="subscribe-link"
class="icon" title="Subscribe" aria-label="Subscribe"
href="{{ site.feed.path | default: 'feed.xml' | relative_url }}">
{% include svg/feed.svg %}
</a>
{% comment %}
Check if we have tag or search pages page active before linking to it.
{% endcomment %}
{% assign tags_page = false %}
{% assign search_page = false %}
{% for node in site.pages %}
{% if node.layout == "tags" %}
{% assign tags_page = node %}
{% elsif node.layout == "search" %}
{% assign search_page = node %}
{% endif %}
{% endfor %}
{% if tags_page %}
<a id="tags-link"
class="icon{% if page.url == '/tags' %} active{% endif %}"
title="Tags" aria-label="Tags"
href="{{ tags_page.url | relative_url }}">
{% include svg/tags.svg %}
</a>
{% endif %}
{% if search_page %}
<a id="search-link"
class="icon{% if page.url == '/search' %} active{% endif %}"
title="Search" aria-label="Search"
href="{{ search_page.url | relative_url }}">
{% include svg/search.svg %}
</a>
{% endif %}
{% include custom-icon-links.html %}
</nav>