Sha256: 9d3ddc3443d09e1f73ce42d19bafb68cd07d62a29417f2216c88a82abd03f0e2

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 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 %}
              <h3>{{ post.date | date: '%Y' }}</h3>
            {% else %}
              {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
              {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
              {% if year != nyear %}
                <h3>{{ post.date | date: '%Y' }}</h3>
              {% 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 -->
    <div class='scroll-top'>
      <p id='back-top' style='display: block;'><a href='#top'><span/></a></p>
    </div>
    {% include scripts.html %}
  </body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
krad-3.2.6 _layouts/home.html
krad-3.2.5 _layouts/home.html
krad-3.2.4 _layouts/home.html
krad-3.2.3 _layouts/home.html
krad-3.2.2 _layouts/home.html
krad-3.2.1 _layouts/home.html