Sha256: 4a0824f6af6b7661fac4fcb148f07c84606bdf977f08f0ac4156f74c1624320d

Contents?: true

Size: 1.16 KB

Versions: 8

Compression:

Stored size: 1.16 KB

Contents

{% if post.id %}
  {% assign title = post.title | markdownify | strip_html %}
{% else %}
  {% assign title = post.title %}
{% endif %}

<article class="entry">
  <header class="entry-header">
    <h3 class="entry-title">
      <a href="{{ post.url | relative_url }}" rel="bookmark">{{ title }}</a>
    </h3>
  </header>
  <footer class="entry-meta">
    <ul>
    {% if post.date %}
      <li><span class="icon">{% include icon-calendar.svg %}</span><time class="entry-time" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %-d, %Y" }}</time></li>
    {% endif %}
    {% if post.read_time %}
      <li><span class="icon">{% include icon-stopwatch.svg %}</span>{% capture read_time %}{% include read-time.html %}{% endcapture %}{{ read_time | strip }}</li>
    {% endif %}
    </ul>
  </footer>
  <div class="entry-excerpt">
    {% if post.excerpt %}
      {{ post.excerpt | markdownify }}
      <p><a href="{{ post.url | relative_url }}" class="more-link">{{ site.data.theme.t.read_more | default: 'Read More' }} <span class="icon icon--arrow-right">{% include icon-arrow-right.svg %}</span></a></p>
    {% endif %}
  </div>
</article>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-theme-basically-basic-1.3.1 _includes/entry.html
jekyll-theme-basically-basic-1.3.0 _includes/entry.html
jekyll-theme-basically-basic-1.2.0 _includes/entry.html
jekyll-theme-basically-basic-1.1.3 _includes/entry.html
jekyll-theme-basically-basic-1.1.2 _includes/entry.html
jekyll-theme-basically-basic-1.1.1 _includes/entry.html
jekyll-theme-basically-basic-1.1.0 _includes/entry.html
jekyll-theme-basically-basic-1.0.1 _includes/entry.html