django-simplecms/cms/templates/cms/page.html

13 wiersze
286 B
HTML

{% extends 'base.html' %}
{% load cms %}
{% block title %}{{block.super}} - {{page.title}}{% endblock %}
{% block content %}
{% for section in sections %}
{% include_section section %}
{% endfor %}
{% editpage '<img src="/static/cms/edit.png">' %}
{% endblock %}