mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
12 lines
422 B
HTML
12 lines
422 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_event_props_seo %}
|
|
{% set event = event_date.event %}
|
|
{%- block title -%}
|
|
{{ meta['title'] }}
|
|
{%- endblock -%}
|
|
{% block content_container_attribs %}{% endblock %}
|
|
{% block content %}
|
|
|
|
{{ render_event_props_seo(event, event_date.start, event_date.end, dates, user_rights=user_rights, share_links=share_links, calendar_links=calendar_links) }}
|
|
|
|
{% endblock %} |