robertjohnson.work/_includes/interests.html

20 lines
497 B
HTML
Raw Normal View History

{% if site.data.data.sidebar.interests %}
2016-07-29 00:47:42 -04:00
<div class="interests-container container-block">
<h2 class="container-block-title">Interests</h2>
<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 %}
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
{% else %}
<li>{{ interest.item }}</li>
{% endif %}
{% endfor %}
</ul>
2016-07-29 00:47:42 -04:00
</div><!--//interests-->
{% endif %}