add url variable to interests

This commit is contained in:
Nelson Estevão 2017-11-17 18:04:25 +00:00
parent 65f490db0b
commit 7ad140aa21
2 changed files with 10 additions and 1 deletions

View File

@ -1,6 +1,9 @@
- interest: - interest:
item: Climbing item: Climbing
link:
- interest: - interest:
item: Snowboarding item: Snowboarding
link:
- interest: - interest:
item: Cooking item: Cooking
link:

View File

@ -5,7 +5,13 @@
<ul class="list-unstyled interests-list"> <ul class="list-unstyled interests-list">
{% for interest in site.data.interests %} {% for interest in site.data.interests %}
{% if interest.link %}
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
{% else %}
<li>{{ interest.item }}</li> <li>{{ interest.item }}</li>
{% endif %}
{% endfor %} {% endfor %}
</ul> </ul>