-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
48 lines (34 loc) · 1.25 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
42
43
44
45
46
47
48
---
layout: default
selected_publications:
- 2023-10-parametric-haptics.html
- 2021-05-developable-metamaterials.html
- 2019-05-understanding-mm.html
- 2017-05-digital-mm.html
- 2016-10-metamaterial-mechanisms.html
---
{% include teaser.html %}
<!-- this shows the section "NEWS" -->
<!-- the news items are defined as a collection, their visibility can be set in each individual item, newest item is displayed first -->
{% assign visible_news = site.news | where: "visible", "true" | sort: "date" | reverse %}
{% if visible_news.size > 0 %}
<div class="container">
<div class="row">
<div class="col col-12">
<h4 class="separator-title"><span style="background: white; padding: 0 10px;">news</span></h4>
{% for item in visible_news %}
<div class="page col col-10 col-t-10 col-m-12">
<div class="page__content" style="padding-bottom: 20px;">
{{item.content}}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
<!-- show "SELECTED PUBLICATIONS" -->
<!-- the publications to show are defined in the front matter above by their *file name* -->
{% include selected-publications.html %}
<!-- **or** show "RECENT PUBLICATIONS" -->
<!-- {% comment %} {% include recent-publications.html N=5 %} {% endcomment %} -->