django-simplecms/example/templates/text.html

18 wiersze
299 B
HTML
Czysty Zwykły widok Historia

{% load i18n cms %}
2020-02-19 19:13:43 +00:00
<section class="text">
<div class="wrapper">
2020-02-19 19:13:43 +00:00
<div class="title">
<h1>
{{section.title}}
</h1>
</div>
2020-02-19 19:13:43 +00:00
<div class="content">
{% eval section.content %}
2020-02-19 19:13:43 +00:00
</div>
</div>
2020-03-24 21:14:33 +00:00
{% editsection '<img src="/static/cms/edit.png">' %}
</section>