feat: migration vers template academic-homepage original
Build and Deploy Jekyll / deploy (push) Successful in 42s
Build and Deploy Jekyll / deploy (push) Successful in 42s
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
---
|
||||
layout: default
|
||||
title : Homepage
|
||||
navbar_title: Home (Layout 2)
|
||||
---
|
||||
{% include widgets/profile_card.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 limit=site.data.display.homepage.num_news %}
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user