forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.19 KB
/
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
33
34
35
36
37
38
39
40
41
---
layout: default
title: Home
notitle: true
---
<div class="jumbotron">
<p>
<b>Dialog Research Center (Dialrc)</b> at <b>LTI, CMU</b> focuses on research in dialog processing and
advances spoken dialog systems for more natural and efficient human-computer interaction via spoken language.
</p>
</div>
<div class="sds">
<a href="{{ site.base }}/">
<img src="{{ site.base }}/img/sds.jpg"
srcset="{{ site.base }}/img/sds.jpg 2x"
alt="Background Image"
id="sds" align="center">
</a>
</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 %}