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