Sha256: 95397b896addda834c85696bf511a9301850ebfd26650e264a964b93b05cde2d

Contents?: true

Size: 1.3 KB

Versions: 12

Compression:

Stored size: 1.3 KB

Contents

<ul class="grid">
  {% for post in include.posts %}
    <li class="card-tab {{ post.color }}">
      <div class="top-bar">
        {{ post.date | date: site.acn.date_format }}
      </div>
      {% if post.icon %}
       <div class="tab"><span class="material-icons">{{ post.icon }}</span></div>
      {% else %}
        {% assign words = post.content | strip_html | strip_newlines | strip | split: " " %}
        <div class="tab">{{ words.size }}<small>words</small></div>
      {% endif %}
      <div class="header">
        {% include writer.html info=post %}
        {% if writer_url %}
          <a href="{{ writer_url }}">{{ writer }}</a>
        {% else %}
          {{ writer }}
        {% endif %}
      </div>
      <div class="body">
        {% if post.image %}
          <img src="{{ post.image }}" alt="{{ post.title }}" />
        {% endif %}
        <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
        {{ post.excerpt }}
      </div>
      <div class="control">
        <a href="{{ post.url }}">
          <span class="middle-align material-icons">article</span>
        </a>
        {% if post.tags %}
          <div class="tags">
          {% for tag in post.tags %}
            <small>{{ tag }}</small>
          {% endfor %}
          </div>
        {% endif %}
      </div>
    </li>
  {% endfor %}
</ul>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
askclass-news-theme-0.3.0 _includes/grid.html
askclass-news-theme-0.2.12 _includes/grid.html
askclass-news-theme-0.2.11 _includes/grid.html
askclass-news-theme-0.2.10 _includes/grid.html
askclass-news-theme-0.2.9 _includes/grid.html
askclass-news-theme-0.2.8 _includes/grid.html
askclass-news-theme-0.2.7 _includes/grid.html
askclass-news-theme-0.2.6 _includes/grid.html
askclass-news-theme-0.2.5 _includes/grid.html
askclass-news-theme-0.2.4 _includes/grid.html
askclass-news-theme-0.2.3 _includes/grid.html
askclass-news-theme-0.2.2 _includes/grid.html