mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
31 lines
1016 B
HTML
31 lines
1016 B
HTML
<div class="unit one-fifth hide-on-mobiles">
|
|
<aside>
|
|
<ul>
|
|
<li class="{% if page.title == 'News' %}current{% endif %}">
|
|
<a href="{{ site.baseurl }}/news/">All News</a>
|
|
</li>
|
|
<li class="{% if page.title == 'Releases' %}current{% endif %}">
|
|
<a href="{{ site.baseurl }}/news/releases/">ResInsight Releases</a>
|
|
</li>
|
|
</ul>
|
|
<h4>Recent Releases</h4>
|
|
<ul>
|
|
{% for post in site.categories.release limit:5 %}
|
|
<li class="{% if page.title == post.title %}current{% endif %}">
|
|
<a href="{{ site.baseurl }}{{ post.url }}">Version {{ post.version }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h4>Other News</h4>
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
{% unless post.categories contains 'release' %}
|
|
<li class="{% if page.title == post.title %}current{% endif %}">
|
|
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
</ul>
|
|
</aside>
|
|
</div>
|