{% if site.data.updates %}
{% include update-list.html %}
{% if update_list.size > 0 %}
{{- site.data.label.panel.lastmod -}}
{% for item in update_list %}
{% assign post_url = item | split: "::" | last | url_encode | prepend: "/posts/" | append: "/" %}
{% assign post = site.posts | where: "url", post_url | first %}
{% if post %}
{% assign url = post.url | relative_url %}
- {{ post.title }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% include trending-tags.html %}
{% if trending_tags.size > 0 %}
{% endif %}
{% if page.layout == 'post' and site.toc and page.toc %}
{{- site.data.label.panel.toc -}}
{% endif %}