Move CV to separate directory

This commit is contained in:
cryobry
2018-06-11 15:05:33 -04:00
父節點 211490ae47
當前提交 3a45f2cb07
共有 102 個文件被更改,包括 0 次插入0 次删除

查看文件

@@ -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 %}