header.html 512 B

12345678910111213141516
  1. {% load wagtailcore_tags wagtailimages_tags %}
  2. <div class="container">
  3. <div class="row">
  4. <div class="col-md-7 base-header">
  5. {% if page.image %}
  6. <div class="image">
  7. {% image page.image width-500 as photo %}
  8. <img src="{{ photo.url }}" width="{{ photo.width }}" height="{{ photo.height }}" alt="{{ photo.alt }}" />
  9. </div>
  10. {% endif %}
  11. <h1>{{ page.title }}</h1>
  12. </div>
  13. </div>
  14. </div>