1
ewpratten.com/blog.md
2020-08-31 13:58:41 -04:00

1.5 KiB

title layout header_red backing_img backing_scalar
Blog Posts page true /assets/images/innovation__monochromatic.svg height:90%;

Here is a list of things I find interesting, and writeups of projects I have worked on.

{% assign i = 0 %}
{% for post in site.posts %}
{% assign the_date = post.date | split: " " %}

{% if i == 0 %}
<a href="{{post.url}}" class="list-group-item list-group-item-action">
    <div class="d-flex w-100 justify-content-between">
        <div class="card-body">
            <h5 class="mb-1">{{post.title}}
                {% if post.is_short %}
                <span class="badge badge-secondary">Mini Post</span>
                {% endif %}
            </h5>
            <p class="card-text">{{post.description}}</p>
        </div>
        <small style="color:gray;">{{the_date.first}}</small>
    </div>
</a>


{% else %}


<a href="{{post.url}}" class="list-group-item list-group-item-action">
    <div class="d-flex w-100 justify-content-between">
        <h5 class="mb-1">{{post.title}}</h5>
        <small style="color:gray;">{{the_date.first}}</small>
    </div>
    <p class="card-text">{{post.description}}</p>
</a>

{% endif %}
{% assign i = i | plus:1 %}
{% endfor %}