12 lines
310 B
HTML
12 lines
310 B
HTML
{% extends 'appearance/base_plain.html' %}
|
|
|
|
{% block title %}{{ title }}{% endblock title %}
|
|
|
|
{% block content_plain %}
|
|
{% for page in pages %}
|
|
<img
|
|
src="{{ page.get_api_image_url }}?width={{ width }}&height={{ height }}" style="width: 100%;"
|
|
/>
|
|
{% endfor %}
|
|
{% endblock %}
|