forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 919 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
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 %}