You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
380 B
9 lines
380 B
{% for link in include.links %}
|
|
{% capture url %}{{page.url}}{{link.url}}/{% endcapture %}
|
|
{% capture path %}{{url}}index.html{% endcapture %}
|
|
{% assign_page link_data = path %}
|
|
<div>
|
|
<h2><a href="{{ site.baseurl }}{{ url }}">{{ link_data.title_nav | or:link_data.title }}</a></h2>
|
|
<p>{{ link_data.description_short | or:link_data.description }}</p>
|
|
</div>
|
|
{% endfor %}
|