nexveridian-web/templates/archive.html
2025-05-06 17:09:22 -07:00

19 lines
No EOL
521 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 %}