Warning, /eic.github.io/_includes/news/homenews.md is written in an unsupported language. File is not indexed.
0001 <h4>News</h4>
0002
0003 {% assign sitedate = site.time | date: "%Y-%m-%d" %}
0004 <table width="60%">
0005 {% for post in site.posts %}
0006
0007 {% assign stopdate = post.until | string_to_date | date: "%Y-%m-%d" %}
0008 {% if stopdate > sitedate %}
0009
0010 <tr>
0011 <td>
0012 <!-- div class="row alert alert-news" -->
0013 <!-- p class="lead event-announce" -->
0014 <a href="{{ post.url }}">
0015 <span class="glyphicon {{ post.symbol }}" aria-hidden="true"></span> {{ post.title }}
0016 </a>
0017 <!-- /p -->
0018 <!-- /div -->
0019 </td>
0020 <td>
0021 {% assign post_date=post.date | date: "%Y-%m-%d" %}
0022 {{ post_date }}
0023 </td>
0024 </tr>
0025 {% endif %}
0026
0027 {% endfor %}
0028 </table>