2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Top 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
|
|
|
|
-->
|
2020-01-03 16:22:11 +03:00
|
|
|
<div id="topbar-wrapper" class="row justify-content-center topbar-down">
|
2019-12-31 18:17:27 +03:00
|
|
|
<div id="topbar" class="col-11 d-flex h-100 align-items-center justify-content-between">
|
2019-09-30 15:38:41 +03:00
|
|
|
<span id="breadcrumb">
|
|
|
|
{% for item in page.breadcrumb %}
|
|
|
|
{% if item.url %}
|
|
|
|
<span>
|
|
|
|
<a href="{{ site.baseurl }}{{ item.url | remove: '.html'}}">
|
|
|
|
{{ item.label }}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<span>{{ item.label }}</span>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% unless page.layout == "home" %}
|
|
|
|
<span>{{ page.title }}</span>
|
|
|
|
{% endunless %}
|
|
|
|
|
|
|
|
</span><!-- endof #breadcrumb -->
|
|
|
|
|
|
|
|
<i id="sidebar-trigger" class="fas fa-bars fa-fw"></i>
|
|
|
|
|
|
|
|
<div id="topbar-title">
|
2020-11-21 23:24:09 +03:00
|
|
|
{% if page.layout == 'home' %}
|
|
|
|
{{- site.title -}}
|
|
|
|
{% elsif page.collection == 'tabs' %}
|
|
|
|
{{- page.title -}}
|
|
|
|
{% else %}
|
|
|
|
{{- page.layout | capitalize -}}
|
|
|
|
{% endif %}
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<i id="search-trigger" class="fas fa-search fa-fw"></i>
|
2019-12-31 18:17:27 +03:00
|
|
|
<span id="search-wrapper" class="align-items-center">
|
2019-09-30 15:38:41 +03:00
|
|
|
<i class="fas fa-search fa-fw"></i>
|
2020-10-27 11:20:22 +03:00
|
|
|
<input class="form-control" id="search-input" type="search"
|
|
|
|
aria-label="search" placeholder="{{ site.data.label.search_hint }}...">
|
2019-12-31 18:17:27 +03:00
|
|
|
<i class="fa fa-times-circle fa-fw" id="search-cleaner"></i>
|
2019-09-30 15:38:41 +03:00
|
|
|
</span>
|
2020-02-21 21:45:07 +03:00
|
|
|
<span id="search-cancel" >Cancel</span>
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
|
|
|
|
2020-10-27 11:20:22 +03:00
|
|
|
</div>
|