blob: 1eb33c3bf208203370173b6e6ca3a02cccd48d00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% comment %}
Edit /_data/sb_whatsnew.yml to generate the content of this sidebar
{% endcomment
%}{% for new in site.data.sb_whatsnew
%}{% assign found = 0
%}{% for post in site.posts
%}{% if post.slug == new.key
%}
<p><small>{{ post.date | date: "%Y-%m-%d" }}</small> <a href="{{ site.baseurl }}{{ post.url }}">{% if new.tag %}<b>{{ new.tag }}</b> {% endif %}{% if new.title %}{{ new.title }}{% else %}{{ post.title }}{% endif %}</a> </p>{% assign found = 1 %}{% break
%}{% endif
%}{% endfor
%}{% if found == 0
%}
<p class="bg-danger">#error# {{ new.key }} not found</p>{%
endif
%}{% endfor
%}
|