2018-07-25 18:01:45 -04:00
|
|
|
{% assign sidebar = site.data.data.sidebar %}
|
2017-10-29 10:46:01 -04:00
|
|
|
<div class="sidebar-wrapper">
|
|
|
|
|
2018-07-25 12:40:47 -04:00
|
|
|
<div class="profile-container">
|
2017-10-29 10:54:15 -04:00
|
|
|
|
2023-03-23 08:32:24 -04:00
|
|
|
{% if sidebar.avatar %}
|
2018-07-25 18:01:45 -04:00
|
|
|
<img class="avatar" src="{{ site.baseurl }}/assets/images/{{ sidebar.avatar }}" alt="profile picture" />
|
2018-07-25 12:40:47 -04:00
|
|
|
{% endif %}
|
2017-10-29 10:46:01 -04:00
|
|
|
|
2018-07-25 18:01:45 -04:00
|
|
|
{% if sidebar.name %}
|
|
|
|
<h1 class="name">{{ sidebar.name }}</h1>
|
2018-07-25 12:40:47 -04:00
|
|
|
{% endif %}
|
2017-10-29 10:46:01 -04:00
|
|
|
|
2018-07-25 18:01:45 -04:00
|
|
|
{% if sidebar.tagline %}
|
|
|
|
<h3 class="tagline">{{ sidebar.tagline }}</h3>
|
2018-07-25 12:40:47 -04:00
|
|
|
{% endif %}
|
2017-10-29 10:46:01 -04:00
|
|
|
|
2018-07-25 12:40:47 -04:00
|
|
|
</div><!--//profile-container-->
|
2017-10-29 10:46:01 -04:00
|
|
|
|
2018-07-25 12:40:47 -04:00
|
|
|
{% include contact.html %}
|
2017-10-29 10:46:01 -04:00
|
|
|
|
2018-07-25 18:09:17 -04:00
|
|
|
{% if sidebar.education %}
|
2018-07-29 08:22:23 -04:00
|
|
|
{% include education.html %}
|
2018-07-25 18:09:17 -04:00
|
|
|
{% endif %}
|
2018-07-25 12:40:47 -04:00
|
|
|
|
2017-10-29 10:46:01 -04:00
|
|
|
{% include language.html %}
|
|
|
|
{% include interests.html %}
|
2018-07-25 12:40:47 -04:00
|
|
|
|
2018-07-25 18:01:45 -04:00
|
|
|
{% if sidebar.about %}
|
2018-01-17 09:10:57 -05:00
|
|
|
{% include about.html %}
|
|
|
|
{% endif %}
|
2017-10-29 10:46:01 -04:00
|
|
|
|
|
|
|
</div><!--//sidebar-wrapper-->
|