You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Home
|
|
|
|
notitle: true
|
|
|
|
---
|
|
|
|
<div class="jumbotron">
|
|
|
|
<p>
|
|
|
|
The <b>Awesome Research Group</b> at <b>Example U</b> does all sorts of
|
|
|
|
research. Here is a place where we tell you exactly what that is!
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>News</h2>
|
|
|
|
<ul class="news list-unstyled">
|
|
|
|
{% for post in site.posts limit: site.front_page_news %}
|
|
|
|
{% if post.shortnews %}
|
|
|
|
<li class="shortnews">
|
|
|
|
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
|
|
{{ post.content }}
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="bloglink">
|
|
|
|
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
|
|
<a href="{{ post.url }}">» {{ post.title }}</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% assign numposts = site.posts | size %}
|
|
|
|
{% if numposts >= site.front_page_news %}
|
|
|
|
<p><a href="{{ site.base }}/blog/">Older posts…</a></p>
|
|
|
|
{% endif %}
|