fix: calendar templates extend root instead of post
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 42s

Prevents 500 errors in standalone events app where post
variable is unavailable.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-10 02:04:35 +00:00
parent a868b0a8a3
commit 033d9d617c
2 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
{% extends '_types/post/index.html' %}
{% extends '_types/root/_index.html' %}
{% block meta %}{% endblock %}
{% block post_header_child %}
{% block root_header_child %}
{% from '_types/root/_n/macros.html' import index_row with context %}
{% call index_row('calendar-header-child', '_types/calendar/header/_header.html') %}
{% block calendar_header_child %}

View File

@@ -1,8 +1,8 @@
{% extends '_types/post/admin/index.html' %}
{% extends '_types/root/_index.html' %}
{% block meta %}{% endblock %}
{% block post_admin_header_child %}
{% block root_header_child %}
{% from '_types/root/_n/macros.html' import index_row with context %}
{% call index_row('calendars-header-child', '_types/calendars/header/_header.html') %}
{% block calendars_header_child %}