{% assign t = site.data.language.t %} <li class=“d-flex hover-primary” style=“padding: .5rem 0”>

<div class="flex-none color-secondary" style="padding: 0 .4rem">
    {{ include.index }}.
</div>
<div class="d-flex flex-column w-100">
    <div><a class="hover-color-reversal" style="line-height: 1.4rem;" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></div>
    <p class="color-secondary-light" style="padding-top: .2rem;">
        {% if post.sticky_subtitle %}
            {{ post.sticky_subtitle }}
        {% else %}
            {{ post.date | date: "%b %d, %Y %H:%M" }}
        {% endif %}
    </p>
</div>
<div class="flex-none d-flex flex-column justify-content-center" style="padding: 0 4px;">
    <a
        class="d-inline-block color-secondary-light hover-border"
        style="padding: .4rem 1rem; margin-right: 1rem"
        href="{{ post.url | prepend: site.baseurl }}"
    >
        {{ t.detail_up | default: 'info' }}
    </a>
</div>

</li>