about_page.html 415 B

123456789101112131415
  1. {% extends "base.html" %}
  2. {% load wagtailimages_tags %}
  3. {% block content-header %}
  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. {% endblock content-header %}
  10. {% block content-body %}
  11. {{ page.body }}
  12. {% endblock content-body %}