Files @ 70d013e42f96
Branch filter:

Location: CSY/sefm2020/themes/bootstrap3/templates/includes/sidebar/links.html

Benjamin Lion
Add best paper award to the news; cross the date for the conference.
{% if LINKS %}
  {% from 'includes/sidebar/macros.jinja' import title %}

<!-- Sidebar/Links -->
<li class="list-group-item">
  <h4>{{ title(('Links'), DISABLE_SIDEBAR_TITLE_ICONS, icon='external-link-square') }}</h4>
  <ul class="list-group" id="links">
    {% for name, link in LINKS %}
    <li class="list-group-item">
      <a href="{{ link }}" target="_blank">{{ name }}</a>
    </li>
    {% endfor %}
  </ul>
</li>
<!-- End Sidebar/Links -->
{% endif %}