robertjohnson.work/_includes/interests.html

14 lines
328 B
HTML
Raw Normal View History

{% if site.data.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.interests %}
<li>{{ interest.item }}</li>
{% endfor %}
</ul>
2016-07-29 00:47:42 -04:00
</div><!--//interests-->
{% endif %}