Move CV to separate directory
This commit is contained in:
19
cv.bryanroessler.com/_includes/interests.html
Normal file
19
cv.bryanroessler.com/_includes/interests.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% if site.data.data.sidebar.interests %}
|
||||
<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 %}
|
||||
|
||||
{% if interest.link %}
|
||||
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
|
||||
{% else %}
|
||||
<li>{{ interest.item }}</li>
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
</div><!--//interests-->
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user