File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050
5151</ div > <!-- #nav-wrapper -->
5252
53- < div class ="sidebar-bottom d-flex flex-wrap justify-content-around mt-4 ">
54-
55- {% if site.theme_mode == "dual" %}
56- < span id ="mode-toggle-wrapper ">
57- {% include mode-toggle.html %}
58- </ span >
59- < span class ="icon-border "> </ span >
60- {% endif %}
61-
62- {% for entry in site.data.contact %}
63- {% capture url %}
64- {%- if entry.type == 'github' -%}
65- https://github.com/{{ site.github.username }}
66- {%- elsif entry.type == 'twitter' -%}
67- https://twitter.com/{{ site.twitter.username }}
68- {%- elsif entry.type == 'email' -%}
69- {% assign email = site.social.email | split: '@' %}
70- javascript:location.href = 'mailto:' + ['{{ email[0] }}','{{ email[1] }}'].join('@')
71- {%- elsif entry.type == 'rss' -%}
72- {{ "/feed.xml" | relative_url }}
73- {%- else -%}
74- {{ entry.url }}
75- {%- endif -%}
76- {% endcapture %}
77-
78- {% if url != '' %}
79- < a href ="{{ url }} " aria-label ="{{ entry.type }} " {% unless entry.noblank %}target ="_blank " rel ="noopener "{% endunless %} >
80- < i class ="{{ entry.icon }} "> </ i >
81- </ a >
82- {% endif %}
83- {% endfor %}
84-
85- </ div >
You can’t perform that action at this time.
0 commit comments