~xdavidwu/xdavidwu.link

add3811ba7c3a8154b0d19399c21312702b08f39 — Michael Rose 8 years ago 1e53e7f
Remove site.read_time condition
2 files changed, 7 insertions(+), 3 deletions(-)

M _includes/archive-single.html
M _layouts/single.html
M _includes/archive-single.html => _includes/archive-single.html +4 -2
@@ 11,7 11,7 @@
    <a href="{{ base_path }}{{ post.url }}">
  {% endif %}
    <article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
      {% if include.type == "grid" %}
      {% if include.type == "grid" and teaser != blank %}
        <div class="archive__item-teaser">
          <img src=
            {% if teaser contains "http" %}


@@ 23,7 23,9 @@
        </div>
      {% endif %}
      <h2 class="archive__item-title" itemprop="headline">{% if post.id %}{{ post.title | markdownify | remove: "<p>" | remove: "</p>" }}{% else %}{{ post.title }}{% endif %}{% if post.link %}<i class="fa fa-star" aria-hidden="true"></i>{% endif %}</h2>
      {% if site.read_time and post.read_time %}<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>{% endif %}
      {% if post.read_time %}
        <p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
      {% endif %}
      {% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
    </article>
  </a>

M _layouts/single.html => _layouts/single.html +3 -1
@@ 25,7 25,9 @@ layout: default
      {% unless page.header.overlay_color or page.header.overlay_image %}
        <header>
          <h1 class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>
          {% if site.read_time and page.read_time %}<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>{% endif %}
          {% if page.read_time %}
            <p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
          {% endif %}
        </header>
      {% endunless %}