Skip to content

Commit

Permalink
sidebar conference
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Polyarus committed Aug 21, 2023
1 parent c2a7334 commit c4be430
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions _includes/side-panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@ <h3 class="level-title" id="skill_{{ skill.name}}">{{ skill.name }}<span class="
</div><!--//section-inner-->
</aside><!--//section-->

{% assign conferences = site.conferences | where: 'status', 'published' %}
{% if conferences.size > 0 %}
<aside class="list conferences aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Conferences</h2>
<div class="content">
<ul class="list-unstyled">
{% for conference in conferences %}
<li><i class="far fa-calendar-alt"></i> <a href="{{ conference.link }}" target="_blank">{{ conference.title }}</a> ({{ conference.location }})</li>
{% endfor %}
</ul>
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//section-->
{% endif %}

{% assign testimonials = site.testimonials | where: 'status', 'published' %}
{% if testimonials.size > 0 %}
<aside class="testimonials aside section">
Expand Down Expand Up @@ -131,21 +147,6 @@ <h2 class="heading">Musique préférée</h2>
</div><!--//section-inner-->
</aside><!--//section-->

{% assign conferences = site.conferences | where: 'status', 'published' %}
{% if conferences.size > 0 %}
<aside class="list conferences aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Conferences</h2>
<div class="content">
<ul class="list-unstyled">
{% for conference in conferences %}
<li><i class="far fa-calendar-alt"></i> <a href="{{ conference.link }}" target="_blank">{{ conference.title }}</a> ({{ conference.location }})</li>
{% endfor %}
</ul>
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//section-->
{% endif %}

<aside class="skills aside section">
<div class="section-inner shadow-sm rounded">
Expand Down

0 comments on commit c4be430

Please sign in to comment.