{{!< default}}


{{#if posts}}
    <main class="post-grid">
        {{#foreach posts}}
            <article class="post-card">
                <a href="{{url}}">
                    {{#if feature_image}}
                        <img src="{{feature_image}}" alt="{{title}}">
                    {{/if}}
                    <div class="title-section">
                        <h2>{{title}}</h2>
    <!--                    <time class="post-card-meta-date" datetime="{{published_at}}">{{date published_at format="MMM DD, YYYY"}}</time>-->
                        {{#if custom_excerpt}}
                            <div class="post-card-meta-date">{{excerpt}}</div>
                        {{/if}}
                    </div>
                    <p>
                        <div>{{content words="25"}}</div>
                        <div class="post-cta">read more...</div>
                    </p>
                </a>
            </article>
        {{/foreach}}
    </main>
{{else}}
    <section class="no-posts">
        <h1 class="">Coming Soon!</h1>
        <p class="">It looks like there are currently no items created for this section of the website.  Check back soon for updates!</p>
        <p class=""><a href="{{@site.url}}">Return to the Home Page →</a></p>
    </section>
{{/if}}

