Skip to content
Snippets Groups Projects
home.html 630 B
---
layout: default
---
<div class="jumbotron">
  <div class="lead">
    {{ content }}
  </div>
  {% assign research_pages = site.pages | where_exp: 'page', 'page.url contains "/research/"'%}
  {% for item in research_pages %}
  <a class="btn btn-primary btn-lg" href="{{ item.url }}">{{ item.title }}</a>
  {% endfor %}
</div>


<div class="row">
  <div class="col-sm-6">
    <h2><a href="{% link news.html %}">Recent News</a></h2>
    {% include news-page.html max=5 %}
  </div>

  <div class="col-sm-6">
    <h2><a href="{% link publications.html %}">Recent Publications</a></h2>
    {% bibliography --max 5 %}
  </div>
</div>