2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Pannel on right side (Desktop views)
|
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-04-07 15:23:57 +03:00
|
|
|
<div id="panel-wrapper" class="col-xl-3 pl-2 text-muted topbar-down">
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2019-10-29 09:09:58 +03:00
|
|
|
<div class="access">
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-04-09 22:15:51 +03:00
|
|
|
{% if site.data.updates %}
|
|
|
|
{% assign MAX_SIZE = 5 %}
|
|
|
|
{% assign sum = 0 %}
|
|
|
|
{% assign sort_list = "" | split: "" %}
|
|
|
|
|
|
|
|
{% for entry in site.data.updates %}
|
|
|
|
{% capture elem %}
|
|
|
|
{{- entry.lastmod -}}::{{- entry.filename -}}
|
2019-10-24 21:40:42 +03:00
|
|
|
{% endcapture %}
|
2020-04-09 22:15:51 +03:00
|
|
|
{% assign sort_list = sort_list | push: elem %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% assign sort_list = sort_list | sort | reverse %}
|
|
|
|
|
|
|
|
{% if sort_list.size > 0 %}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-02-28 19:16:47 +03:00
|
|
|
<div id="access-lastmod" class="post">
|
2019-10-29 12:05:28 +03:00
|
|
|
<h3 data-toc-skip>
|
|
|
|
{{- site.data.label.panel.lastmod -}}
|
|
|
|
</h3>
|
|
|
|
<ul class="post-content pl-0 pb-1 ml-1 mt-2">
|
2020-04-09 22:15:51 +03:00
|
|
|
|
|
|
|
{% for item in sort_list %}
|
|
|
|
{% assign post_url = item | split: "::" | last | prepend: "/posts/" | append: "/" %}
|
|
|
|
{% assign post = site.posts | where: "url", post_url | first %}
|
|
|
|
|
|
|
|
{% if post %}
|
|
|
|
{% assign url = post.url | prepend: site.baseurl %}
|
|
|
|
|
|
|
|
<li><a href="{{ url }}">{{ post.title }}</a></li>
|
|
|
|
|
|
|
|
{% assign sum = sum | plus: 1 %}
|
|
|
|
{% if sum >= MAX_SIZE %} {% break %} {% endif %}
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2019-10-29 12:05:28 +03:00
|
|
|
</ul>
|
|
|
|
</div><!-- #access-lastmod -->
|
2020-04-09 22:15:51 +03:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endif %} <!-- site.data.updates -->
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2019-10-29 12:05:28 +03:00
|
|
|
<div id="access-tags">
|
|
|
|
<h3 data-toc-skip>
|
|
|
|
{{- site.data.label.panel.trending_tags -}}
|
|
|
|
</h3>
|
|
|
|
<div class="d-flex flex-wrap mt-3 mb-1 mr-3">
|
2019-12-31 18:17:27 +03:00
|
|
|
{% include trending-tags.html %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2019-10-29 12:05:28 +03:00
|
|
|
</div> <!-- .access -->
|
|
|
|
|
|
|
|
{% if page.layout == 'post' and site.toc and page.toc %}
|
2019-12-31 18:17:27 +03:00
|
|
|
<div id="toc-wrapper" class="pl-0 pr-4 mb-5">
|
2020-02-28 19:16:47 +03:00
|
|
|
<h3 data-toc-skip class="pl-3 pt-2 mb-3">
|
2019-10-29 09:09:58 +03:00
|
|
|
{{- site.data.label.panel.toc -}}
|
|
|
|
</h3>
|
|
|
|
<nav id="toc" data-toggle="toc"></nav>
|
|
|
|
</div>
|
2019-10-29 12:05:28 +03:00
|
|
|
{% endif %}
|
2019-10-29 09:09:58 +03:00
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
</div> <!-- #panel-wrapper -->
|