2 column layout

This commit is contained in:
Jason Etcovitch
2018-08-08 12:53:05 -04:00
parent f1667410e7
commit fd67d9f7cc

View File

@@ -81,13 +81,15 @@ links:
</div>
<div class="border-top container-md py-4">
{% for link in page.links %}
<div class="p-0 p-md-4 mb-4 mb-md-0">
{{ link.pretext }}:<br>
{% octicon {{ link.octicon }} class:"mr-2 text-gray" %}
<a href="{{ link.href }}">{{ link.title }}</a>
<div class="d-flex gutter flex-wrap">
{% for link in page.links %}
<div class="col-md-6 col-12 mb-4">
{{ link.pretext }}:<br>
{% octicon {{ link.octicon }} class:"mr-2 text-gray" %}
<a href="{{ link.href }}">{{ link.title }}</a>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>