diff --git a/stranky/templates/stranky/stranky_page.html b/stranky/templates/stranky/stranky_page.html new file mode 100644 index 0000000..369e062 --- /dev/null +++ b/stranky/templates/stranky/stranky_page.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% load wagtailcore_tags wagtailimages_tags %} + +{% block body_class %}template-blogpage{% endblock %} + +{% block content %} +

{{ page.title }}

+ +
{{ page.intro }}
+ + {{ page.body|richtext }} + + {% for item in page.gallery_images.all %} +
+ {% image item.image fill-320x240 %} +

{{ item.caption }}

+
+ {% endfor %} + +

Return to blog

+ +{% endblock %} \ No newline at end of file