website/_includes/landing_page.html (16 lines of code) (raw):
{% include vars.html %}
<div class="list-group mt-1">
{% for page in guide.pages offset:1 %}
{% assign path = page.path %}
{% assign title = i18n[path].title %}
{% assign description = i18n[path].description %}
<a class="list-group-item list-group-item-action" href="{{url_base}}{{path}}">
<h5 class="list-group-item-heading">
{{title}}
</h5>
<p class="list-group-item-text text-muted">
{{description}}
</p>
</a>
{% endfor %}
</div>