Sha256: f3d0b8c9b7adb83ec48fe9d83387a1884b4085f6c90ed6262836cfa0000d73ae
Contents?: true
Size: 1.22 KB
Versions: 3
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 %} <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 --> <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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
krad-3.2.9 | _layouts/home.html |
krad-3.2.8 | _layouts/home.html |
krad-3.2.7 | _layouts/home.html |