-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 998 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
33
34
35
36
37
---
layout: default
title : Homepage
navbar_title: Home
---
{% include widgets/profile_card.html %}
{% include widgets/url_debug_message.html %}
{% if site.data.display.homepage.show_experience %}
{% include widgets/experience_card.html %}
{% endif %}
{% if site.data.display.homepage.show_news %}
{% assign count_news = site.news | size %}
{% if count_news > 0 %}
{% include widgets/news_card.html %}
{% endif %}
{% endif %}
{% if site.data.display.homepage.show_selected_publications %}
{% assign pubs = site.publications | sort: "date" | reverse | where: "selected", true %}
{%
include widgets/publication_card.html
publications=pubs
title='<i class="fas fa-star"></i> Selected Publications'
%}
{% endif %}
{% if site.data.display.homepage.show_projects %}
{% assign pubs = site.projects | sort: "date" | reverse | where: "selected", true %}
{%
include widgets/projects_card.html
projects=pubs
title='<i class="fas fa-star"></i> Selected Projects'
%}
{% endif %}