forked from robert/robertjohnson.work
add url variable to interests
This commit is contained in:
parent
65f490db0b
commit
7ad140aa21
@ -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:
|
||||||
|
@ -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 %}
|
||||||
<li>{{ interest.item }}</li>
|
|
||||||
|
{% if interest.link %}
|
||||||
|
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
|
||||||
|
{% else %}
|
||||||
|
<li>{{ interest.item }}</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user