Sha256: 9cea9b766ad535ca22f4fc00165e5501d554dfc6b19213324db8b6db6b00a0f7

Contents?: true

Size: 950 Bytes

Versions: 6

Compression:

Stored size: 950 Bytes

Contents

<!-- Feed generating loop -->
{% for post in paginator.posts %}

<!-- Post heading -->
<div class="row">
    <div class="col">
        <h1 style="margin-bottom: 0;"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
        <p>
            {% if post.author %}
            By {{ post.author }} &emsp;
            {% endif %}
            Published {{ post.date | date: "%Y-%m-%d" }} &emsp;
            {% for tag in post.tags %}
            <span class="tag">{{ tag }}</span>
            {% endfor %}
        </p>
    </div>
</div>

<!-- Post content -->
<div class="row">
    {% if post.img %}
    <div class="col-4">
        {% if post.cropkeep %}
        {% picture "{{ post.img }}" 3:2 {{ post.cropkeep }} %}
        {% else %}
        {% picture "{{ post.img }}" %}
        {% endif %}
    </div>
    {% endif %}

    <div class="col">
        {{ post.excerpt }}
    </div>
</div>
{% endfor %}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-buttery-biscuit-0.3.7 _includes/paginatefeed.html
jekyll-theme-buttery-biscuit-0.3.6 _includes/paginatefeed.html
jekyll-theme-buttery-biscuit-0.3.5 _includes/paginatefeed.html
jekyll-theme-buttery-biscuit-0.3.4 _includes/paginatefeed.html
jekyll-theme-buttery-biscuit-0.3.3 _includes/paginatefeed.html
jekyll-theme-buttery-biscuit-0.3.2 _includes/paginatefeed.html