9 lines
294 B
HTML
9 lines
294 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ custom_page.title }}{% endblock %}
|
|
{% block meta_description %}{{ custom_page.meta_description|default:custom_page.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "partials/_page_sections.html" with sections=page_sections %}
|
|
{% endblock %}
|