2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Side Bar
|
2020-01-02 16:17:49 +03:00
|
|
|
v2.0
|
|
|
|
https://github.com/cotes2020/jekyll-theme-chirpy
|
2019-09-30 15:38:41 +03:00
|
|
|
© 2017-2019 Cotes Chung
|
|
|
|
MIT License
|
|
|
|
-->
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
<div id="nav-wrapper">
|
|
|
|
<div id="profile-wrapper" class="d-flex flex-column">
|
2019-11-11 18:02:38 +03:00
|
|
|
<div id="avatar" class="d-flex justify-content-center">
|
2019-10-21 08:18:25 +03:00
|
|
|
<a href="{{ site.baseurl }}/" alt="avatar">
|
2020-01-05 23:11:30 +03:00
|
|
|
{% assign avatar_url = site.avatar %}
|
|
|
|
{% capture start %}{{ site.avatar | slice: 0 }}{% endcapture %}
|
|
|
|
{% if start == '/' %}
|
|
|
|
{% assign avatar_url = avatar_url | prepend: site.baseurl %}
|
2019-09-30 15:38:41 +03:00
|
|
|
{% endif %}
|
2020-02-14 00:37:59 +03:00
|
|
|
<img src="{{ avatar_url }}" alt="avatar">
|
2019-09-30 15:38:41 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
|
|
<div class="profile-text mt-3">
|
|
|
|
<div id="site-title">
|
|
|
|
<a href="{{ site.baseurl }}/">{{- site.title -}}</a>
|
|
|
|
</div>
|
2020-01-08 21:48:57 +03:00
|
|
|
<div id="site-subtitle" class="font-italic">{{- site.tagline -}}</div>
|
2019-11-11 18:02:38 +03:00
|
|
|
</div>
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
|
|
|
|
2019-11-11 18:02:38 +03:00
|
|
|
<ul class="nav flex-column">
|
2019-09-30 15:38:41 +03:00
|
|
|
{% assign page_urls = page.url | split: "/" %}
|
|
|
|
|
|
|
|
{% for item in site.data.label.tabs %}
|
|
|
|
{% assign ref = site.baseurl | append: "/" %}
|
|
|
|
|
|
|
|
{% if item.path %}
|
|
|
|
{% assign ref = ref | append: item.path | append: "/" %}
|
|
|
|
{% if item.url %}
|
|
|
|
{% assign ref = ref | append: item.url | append: "/" %}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<li class="nav-item d-flex justify-content-center
|
2020-02-08 21:57:45 +03:00
|
|
|
{% if item.url == page_urls.last
|
|
|
|
or item.name == page.tab_active
|
|
|
|
or item.name == "Home" and page.layout == "home" %}active{% endif %}">
|
2019-11-11 18:02:38 +03:00
|
|
|
<a href="{{ ref }}" class="nav-link d-flex justify-content-center align-items-center w-100">
|
2020-01-03 23:59:09 +03:00
|
|
|
<i class="fa-fw {{ item.icon }} ml-3 mr-3 unloaded"></i>
|
2019-11-11 18:02:38 +03:00
|
|
|
<span>{{ item.name | upcase }}</span>
|
2019-09-30 15:38:41 +03:00
|
|
|
</a>
|
|
|
|
</li> <!-- .nav-item -->
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</ul> <!-- ul.nav.flex-column -->
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
</div><!-- #nav-wrapper -->
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-02-13 17:28:33 +03:00
|
|
|
<div class="sidebar-bottom d-flex justify-content-around mt-4">
|
2020-02-13 12:46:05 +03:00
|
|
|
|
|
|
|
<span id="mode-toggle-wrapper" class="d-flex justify-content-center align-items-center">
|
|
|
|
{% include dark-mode-toggle.html %}
|
|
|
|
</span>
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
<a href="https://github.com/{{ site.github.username }}" target="_blank">
|
2019-11-11 18:02:38 +03:00
|
|
|
<i class="fab fa-github-alt"></i>
|
2019-09-30 15:38:41 +03:00
|
|
|
</a>
|
|
|
|
<a href="https://twitter.com/{{ site.twitter.username }}" target="_blank">
|
|
|
|
<i class="fab fa-twitter"></i>
|
|
|
|
</a>
|
|
|
|
{% assign email = site.social.email | split: '@' %}
|
|
|
|
<a href="javascript:window.open('mailto:' + ['{{ email[0] }}','{{ email[1] }}'].join('@'))">
|
|
|
|
<i class="fas fa-envelope"></i>
|
|
|
|
</a>
|
|
|
|
<a href="{{ site.baseurl }}/feed.xml" target="_blank">
|
|
|
|
<i class="fas fa-rss"></i>
|
|
|
|
</a>
|
2020-02-13 12:46:05 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|