index.html (637B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{%- extends "base.html" -%} {%- block title %} <title>{{ config.extra.author }}</title> {%- endblock title -%} {%- block main -%} <article class="post"> <h1 class="post-title">{{ section.title }}</h1> <article class="post"> <div class="post-content">{{ section.content | safe }}</div> </article> <h2 class="post-title post-title-sub">Recent Posts</h2> {% set section = get_section(path="blog/_index.md") %} <ul class="post-list"> {% for page in section.pages -%} {%- if loop.index0 < 5 -%} <li>{{ posts::meta(page=page, list=true) }}</li> {%- endif -%} {%- endfor %} </ul> </article> {%- endblock main -%}