web/_includes/panel.html

58 lines
1.7 KiB
HTML
Raw Normal View History

2019-09-30 15:38:41 +03:00
<!--
The Pannel on right side (Desktop views)
-->
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
<div class="access">
2019-09-30 15:38:41 +03:00
{% include update-list.html %}
{% if update_list.size > 0 %}
2020-02-28 19:16:47 +03:00
<div id="access-lastmod" class="post">
2021-07-20 20:01:09 +03:00
<span>{{- site.data.locales[site.lang].panel.lastmod | default: 'Recent Update' -}}</span>
2019-10-29 12:05:28 +03:00
<ul class="post-content pl-0 pb-1 ml-1 mt-2">
2020-04-09 22:15:51 +03:00
2020-05-09 19:28:18 +03:00
{% for item in update_list %}
{% assign index = item | split: "::" | last | plus: 0 %}
{% assign post = site.posts[index] %}
{% assign url = post.url | relative_url %}
<li><a href="{{ url }}">{{ post.title }}</a></li>
2020-04-09 22:15:51 +03:00
{% endfor %}
2019-10-29 12:05:28 +03:00
</ul>
</div> <!-- #access-lastmod -->
{% endif %}
2019-09-30 15:38:41 +03:00
2020-06-03 17:49:28 +03:00
{% include trending-tags.html %}
{% if trending_tags.size > 0 %}
2019-10-29 12:05:28 +03:00
<div id="access-tags">
2021-07-20 20:01:09 +03:00
<span>{{- site.data.locales[site.lang].panel.trending_tags | default: 'Trending Tags' -}}</span>
2019-10-29 12:05:28 +03:00
<div class="d-flex flex-wrap mt-3 mb-1 mr-3">
{% for tag_name in trending_tags %}
{% assign url = tag_name | slugify | url_encode | prepend: "/tags/" | append: "/" %}
<a class="post-tag" href="{{ url | relative_url }}">{{ tag_name }}</a>
2020-06-11 16:16:44 +03:00
{% endfor %}
</div>
</div>
{% endif %}
2019-10-29 12:05:28 +03:00
</div> <!-- .access -->
{% if include.toc %}
2021-01-23 10:07:18 +03:00
<!-- BS-toc.js will be loaded at medium priority -->
<script src="https://cdn.jsdelivr.net/gh/afeld/bootstrap-toc@1.0.1/dist/bootstrap-toc.min.js"></script>
<div id="toc-wrapper" class="pl-0 pr-4 mb-5">
<span class="pl-3 pt-2 mb-2">
2021-07-20 20:01:09 +03:00
{{- site.data.locales[site.lang].panel.toc | default: 'Contents' -}}
</span>
<nav id="toc" data-toggle="toc"></nav>
</div>
2019-10-29 12:05:28 +03:00
{% endif %}
</div> <!-- #panel-wrapper -->