Sha256: aa17ce7d166bf74747929533cd821dc0d8abbe9cbcc37fc62179b1f91bdc6ef2

Contents?: true

Size: 1.26 KB

Versions: 24

Compression:

Stored size: 1.26 KB

Contents

<div class="row card__block latest-posts p-t-50 p-b-50">
    <div class="container">
        <div class="row">
            <div class="col text-center">
                <h3>Latest Posts</h3>
            </div>
        </div>
        <div class="row">
            {% for post in site.posts limit: include.limit %}
            <div class="col-md-4 d-flex align-items-stretch">
                <div class="card text-center">
                    {% assign post_image = post.image.path | replace: '/assets/images/','' %}
                    <a href="{{post.url | prepend: site.baseurl }}">
                        {% picture card {{post_image}} alt=post.image.alt %}
                    </a>
                    <div class="card-body">
                        <h5 class="card-title">{{post.title}}</h5>
                        <h6 class="card-subtitle mb-2 text-muted">{{post.date |  date: "%A, %B %-d, %Y"}}</h6>
                        <p class="card-text">
                            {{post.content | truncatewords: 20, "..."}}
                        </p>
                        <a class="btn btn-primary" href="{{post.url | prepend: site.baseurl }}">Read</a>
                    </div>
                </div>
            </div>
            {% endfor %}
        </div>
    </div>
</div>

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
seriously_simple_static_starter-0.7.0 _includes/latest_posts.html
seriously_simple_static_starter-0.6.7 _includes/latest_posts.html
seriously_simple_static_starter-0.6.6 _includes/latest_posts.html
seriously_simple_static_starter-0.6.5 _includes/latest_posts.html
seriously_simple_static_starter-0.6.4 _includes/latest_posts.html
seriously_simple_static_starter-0.6.3 _includes/latest_posts.html
seriously_simple_static_starter-0.6.2 _includes/latest_posts.html
seriously_simple_static_starter-0.6.1 _includes/latest_posts.html
seriously_simple_static_starter-0.5.1 _includes/latest_posts.html
seriously_simple_static_starter-0.5.0 _includes/latest_posts.html
seriously_simple_static_starter-0.4.0 _includes/latest_posts.html
seriously_simple_static_starter-0.3.1 _includes/latest_posts.html
seriously_simple_static_starter-0.3.0 _includes/latest_posts.html
seriously_simple_static_starter-0.2.9.1 _includes/latest_posts.html
seriously_simple_static_starter-0.2.9 _includes/latest_posts.html
seriously_simple_static_starter-0.2.8 _includes/latest_posts.html
seriously_simple_static_starter-0.2.7 _includes/latest_posts.html
seriously_simple_static_starter-0.2.6 _includes/latest_posts.html
seriously_simple_static_starter-0.2.5 _includes/latest_posts.html
seriously_simple_static_starter-0.2.4 _includes/latest_posts.html