Sha256: 8dc2043f6a3c457afca3eaef0c7f2bf88305e10b4edd67e20f553148cc0665c1

Contents?: true

Size: 1.2 KB

Versions: 9

Compression:

Stored size: 1.2 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>
          {% 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

9 entries across 9 versions & 1 rubygems

Version Path
krad-3.2.0 _layouts/home.html
krad-3.1.9b _layouts/home.html
krad-3.1.9 _layouts/home.html
krad-3.1.8 _layouts/home.html
krad-3.1.7 _layouts/home.html
krad-3.1.6 _layouts/home.html
krad-3.1.5 _layouts/home.html
krad-3.1.4 _layouts/home.html
krad-3.1.3 _layouts/home.html