Sha256: f286dd5c8fdb946a9621ec9819fcd8ae1c7e0892446d92e354d606369a49c0ec

Contents?: true

Size: 1018 Bytes

Versions: 15

Compression:

Stored size: 1018 Bytes

Contents

<div class="card">
    {% if post.image %}
    <div class="card-image">
        <img src="{{ post.image }}" alt="{{ post.title }}">
    </div>
    {% else %}
    <header class="card-header">
        <a class="card-header-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title}}</a>
    </header>
    {% endif %}
    <div class="card-content">
        <div class="content">
            {% if post.image %}
            <a class="title is-4" href="{{ site.baseurl }}{{ post.url }}">{{ post.title}}</a>
            {% endif %}
            {% if post.summary %}
                {{ post.summary | markdownify }}
            {% else %}
                <p>{{ post.excerpt }}</p>
            {% endif %}
        </div>
        <div class="has-text-centered">
            <a href="{{ site.baseurl }}{{ post.url }}" class="button is-primary">Read more</a>
        </div>
    </div>
    <footer class="card-footer">
        <p class="card-footer-item">Published: {{ post.date | date: "%b %-d, %Y" }}</p>
    </footer>
</div>

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
bulma-clean-theme-0.13.3 _includes/post-card.html
bulma-clean-theme-0.13.2 _includes/post-card.html
mgm-jekyll-bulma-0.1.1 _includes/post-card.html
bulma-clean-theme-0.13.1 _includes/post-card.html
bulma-clean-theme-0.13 _includes/post-card.html
bulma-clean-theme-0.12 _includes/post-card.html
bulma-clean-theme-0.11.2 _includes/post-card.html
bulma-clean-theme-0.11.1 _includes/post-card.html
bulma-clean-theme-0.11 _includes/post-card.html
bulma-clean-theme-0.10.6 _includes/post-card.html
bulma-clean-theme-0.10.5 _includes/post-card.html
bulma-clean-theme-0.10.4 _includes/post-card.html
bulma-clean-theme-0.10.3 _includes/post-card.html
bulma-clean-theme-0.10.2 _includes/post-card.html
bulma-clean-theme-0.10.1 _includes/post-card.html