Sha256: fe03de24030abe3acee34cdd712f6db010d883c34456ad4587b166aaa8d1c91c
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
--- layout: compress --- {% include head.html %} <main> {% include header.html %} {{ content }} <ul class="blog-posts"> {% assign post_list = '' | split: ',' %} {% for post in site.posts %} {% for tag in post.tags %} {% assign post_list = post_list | push: post %} {% endfor %} {% endfor %} {% for post in post_list %} {% unless post == previous %} <li> <span> <i> <time datetime="2022-01-28" pubdate=""> {{ post.date | date: "%b %-d, %Y" }} </time> </i> </span> <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> </li> {% endunless %} {% assign previous = post %} {% endfor %} </ul> <small> {% for tag in site.tags %} {% assign tag_slug = tag | first %} {% assign no_of_posts = tag | last | size %} <a href="{{ 'tagged/' | relative_url }}{{ tag_slug }}" title="See all posts by {{ tag_slug }} tag">#{{ tag_slug }}</a> {% endfor %} </small> </main> {% include footer.html %} </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll-bear-theme-0.1.7 | _layouts/blog.html |
jekyll-bear-theme-0.1.6 | _layouts/blog.html |