* Add back changes from prior to purge * Manually fix some invalid Liquid * Updoot render-content * Improve test messages to show correct output * Run el scripto * Pass the remaining test
28 lines
836 B
HTML
28 lines
836 B
HTML
<div class="featured-links container-xl">
|
|
<div class="gutter gutter-xl-spacious clearfix">
|
|
|
|
<!-- Getting Started articles -->
|
|
<div class="col-12 col-lg-6 float-left">
|
|
<div class="featured-links-heading pb-4">
|
|
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
|
|
</div>
|
|
|
|
{% for link in gettingStartedLinks %}
|
|
{% include featured-link %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<!-- Popular articles -->
|
|
<div class="col-12 col-lg-6 float-left">
|
|
<div class="featured-links-heading pb-4">
|
|
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
|
|
</div>
|
|
|
|
{% for link in popularLinks %}
|
|
{% include featured-link %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|