40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
---
|
|
layout: default
|
|
title : Homepage
|
|
navbar_title: Home
|
|
---
|
|
|
|
<div class="row">
|
|
<div class="col-lg-4 col-md-5">
|
|
{% include widgets/profile_card_mini.html %}
|
|
</div>
|
|
<div class="col-lg-9 col-md-8">
|
|
|
|
{% include widgets/profile_card_bio_only.html %}
|
|
|
|
<!-- Debugging widgets -->
|
|
{% include widgets/debug_repo_name.html %}
|
|
{% include widgets/debug_url.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 %}
|
|
</div>
|
|
</div>
|