Sha256: c9ecbf653bf5351c507d3ffe0bcae328eb412a862194c9ff4c893345d68298df
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
<!DOCTYPE html> <html lang="{{ page.lang | default: site.lang }}"> {% include head.html %} <body class="black-90 {% if page.class or layout.class %}{{ page.class | default: layout.class | join: ' ' | prepend: ' ' }}{% endif %}"> <div class="flex flex-column items-center"> <div class="mw7 w-100 ph3 ph4-ns"> <h1 class="f5 fw4 lh-title mb0 pb2 bb b--light-gray">{% if page.type == 'year' %}Posts from {{ page.date | date: "%Y" }}{% elsif page.type == 'month' %}Posts from {{ page.date | date: "%B %Y" }}{% elsif page.type == 'day' %}Posts from {{ page.date | date: site.date_format }}{% else %}Posts with {{ page.type }} '{{ page.title }}'{% endif %}</h1> {% for post in page.posts %} <a class="link black hover-silver" href="{{ post.url | relative_url }}"> <article class="f5 lh-copy fw3 pb4 bb b--light-gray"> <div class="f6 fw6 lh-title ttu tracked mv4">{{ post.date | date: "%b %Y" }}</div> <h3 class="f3 fw6 lh-title mb0">{{ post.title | escape }}</h3> <p class="f5 fw3 lh-copy mv2">{{ post.excerpt | remove: '<p>' | remove: '</p>' }}</p> <div class="f6 fw3 silver mt0"> {% if post.last_modified_at %} <span>{{ site.data.theme.text.updated }} <time>{{ post.last_modified_at | date: site.date_format }}</time></span> {% else %} <time>{{ post.date | date: site.date_format }}</time> {% endif %} <span class="ttl">· {% include read_time.html %}</span> </div> </article> </a> {% endfor %} </div> </div> {% include footer.html %} </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
minimal-jekyll-theme-0.2.0 | _layouts/archive.html |
minimal-jekyll-theme-0.1.4 | _layouts/archive.html |