scottjohnson.pro/_includes/interests.html

23 lines
518 B
HTML
Raw Permalink Normal View History

2018-07-25 18:01:45 -04:00
{% assign interests = site.data.data.sidebar.interests %}
{% if interests %}
2016-07-29 00:47:42 -04:00
<div class="interests-container container-block">
2018-07-29 08:22:23 -04:00
<h2 class="container-block-title">
{{ interests.title }}
2018-07-29 08:22:23 -04:00
</h2>
2018-07-25 12:40:47 -04:00
<ul class="list-unstyled interests-list">
{% for interest in interests.info %}
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>
2016-07-29 00:47:42 -04:00
</div><!--//interests-->
{% endif %}