2018-05-13 04:13:44 -04:00
|
|
|
{% if site.data.data.sidebar.interests %}
|
2016-07-29 00:47:42 -04:00
|
|
|
<div class="interests-container container-block">
|
2017-10-29 11:08:28 -04:00
|
|
|
|
|
|
|
<h2 class="container-block-title">Interests</h2>
|
|
|
|
|
2018-07-25 12:40:47 -04:00
|
|
|
<ul class="list-unstyled interests-list">
|
|
|
|
{% for interest in site.data.data.sidebar.interests %}
|
2017-11-17 13:04:25 -05:00
|
|
|
|
|
|
|
{% if interest.link %}
|
2018-07-25 12:40:47 -04:00
|
|
|
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li>{{ interest.item }}</li>
|
|
|
|
{% endif %}
|
2017-11-17 13:04:25 -05:00
|
|
|
|
2018-07-25 12:40:47 -04:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2017-10-29 11:08:28 -04:00
|
|
|
|
2016-07-29 00:47:42 -04:00
|
|
|
</div><!--//interests-->
|
2017-10-29 11:08:28 -04:00
|
|
|
{% endif %}
|