header.html 469 B

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