Sha256: 5191f423da7dd95388892147bfd51b1597d97fa07df870f9be271facab21223a

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

<!DOCTYPE html>
<html lang="en">

  {% include head.html %}

  <body>
    {% include facebook-init.html %}
    <div class="layout">

      {% include header.html %}

      <main class="main-wrapper">
        <div class="page wrapper">
        <h1 class="page-title">{{ page.title }}</h1>
        <ul class="posts-list">
          {% for post in site.posts %}
        
            {% unless post.next %}
              <h2>{{ post.date | date: '%Y' }}</h2>
            {% else %}
              {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
              {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
              {% if year != nyear %}
                <h2>{{ post.date | date: '%Y' }}</h2>
              {% endif %}
            {% endunless %}
        
            <li><span class="archive-month">{{ post.date | date:"%b" }}</span> ยป <a class="archive-title" href="{{ post.url }}">{{ post.title }}</a></li>
          {% endfor %}
        </ul>
        </div>
      </main>

      {% include footer.html %}

    </div>
    <!-- Back to Top -->
    {% include back-top.html %}
    {% include scripts.html %}
  </body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
krad-3.4.1 _layouts/home.html
krad-3.4.0 _layouts/home.html
krad-3.3.3 _layouts/home.html
krad-3.3.2 _layouts/home.html
krad-3.3.1 _layouts/home.html
krad-3.3.0 _layouts/home.html