File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- {{ article.date | date: "%-d %b %Y" }}
1
+ {% assign my_date = include.date %}
2
+ {{ my_date | date: "%-d %b %Y" }}
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ <h4><b>News</b></h4>
6
6
7
7
{% assign top_articles = site.data.news | slice: 0, 3 %}
8
8
{% for article in top_articles %}
9
- < p > < a href ="{{article.link}} "> {{article.headline}}</ a > < br /> {% include date.html %}</ p >
9
+ < p > < a href ="{{article.link}} "> {{article.headline}}</ a > < br /> {% include date.html date=article.date %}</ p >
10
10
{% endfor %}
11
11
12
-
12
+
13
13
14
14
</ div >
15
15
< h4 > < a href ="{{ site.url }}{{ site.baseurl }}/allnews "> ... see details</ a > </ h4 >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ <h4><b>Project Meetings</b></h4>
4
4
5
5
{% assign top_articles = site.data.meetinglist | slice: 0, 3 %}
6
6
{% for article in top_articles %}
7
- < p > < a href ="{{ site.url }}{{ site.baseurl }}/meetings/#{{ article.label }} "> {{ article.agenda[0].title }}</ a > < br /> {% include date.html %}</ p >
7
+ < p > < a href ="{{ site.url }}{{ site.baseurl }}/meetings/#{{ article.label }} "> {{ article.agenda[0].title }}</ a > < br /> {% include date.html date=article.date %}</ p >
8
8
{% endfor %}
9
9
10
10
</ div >
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ <h4><b>Software Releases</b></h4>
6
6
7
7
{% assign top_articles = site.data.releases | slice: 0, 5 %}
8
8
{% for article in top_articles %}
9
- < p > < a href ="{{article.link}} "> {{article.codebase}} - {{article.version}}</ a > < br /> {% include date.html %}</ p >
9
+ < p > < a href ="{{article.link}} "> {{article.codebase}} - {{article.version}}</ a > < br /> {% include date.html date=article.date %}</ p >
10
10
{% endfor %}
11
11
12
12
Original file line number Diff line number Diff line change @@ -8,9 +8,12 @@ permalink: /releases
8
8
9
9
# Releases
10
10
11
+
11
12
{% for article in site.data.releases %}
12
- <p ><em ><b >{{article.codebase}} - {{article.version}}</b > ({% include date.html %})</em ></p >
13
+ <div class =' well ' >
14
+ <p ><em ><b >{{article.codebase}} - {{article.version}}</b ><br >{% include date.html date=article.date %}</em ></p >
13
15
<div style =" padding-left : 20px ; padding-right : 20px " >
14
16
<p >{{article.description}} For details, please see the <a href =' {{article.link}} ' >release notes</a >.</p >
15
17
</div >
18
+ </div >
16
19
{% endfor %}
You can’t perform that action at this time.
0 commit comments