about_page.html 347 B

12345678910111213
  1. {% extends "base.html" %}
  2. {% load wagtailimages_tags %}
  3. {% block content %}
  4. {{ page.title }}
  5. <div class="image">
  6. {% image page.image width-500 as photo %}
  7. <img src="{{ photo.url }}" width="{{ photo.width }}" height="{{ photo.height }}" alt="{{ photo.alt }}" />
  8. </div>
  9. {{ page.body }}
  10. {% endblock content %}