19 lines
522 B
HTML
19 lines
522 B
HTML
{% extends "index.html" %}
|
|
|
|
{%- block title -%}
|
|
{{ title_macros::title(page_title=page.title, main_title=config.title) }}
|
|
{%- endblock -%}
|
|
|
|
{% block extra_head %}
|
|
<link rel="stylesheet" href="{{ get_url(path="css/custom.css") }}">
|
|
{% endblock extra_head %}
|
|
|
|
{% block content %}
|
|
<div class="post">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
|
|
{% set blog_section = get_section(path="blog/_index.md") %}
|
|
|
|
{{ post_macros::list_posts(pages=blog_section.pages) }}
|
|
</div>
|
|
{% endblock content %}
|