heading_block.html 327 B

123456789101112131415
  1. {% if self.size == 'h2' %}
  2. <h2>{{ self.heading_text }}</h2>
  3. {% elif self.size == 'h3' %}
  4. <h3>{{ self.heading_text }}</h3>
  5. {% elif self.size == 'h4' %}
  6. <h4>{{ self.heading_text }}</h4>
  7. {% endif %}
  8. {% comment %}
  9. Content is coming from the StandardBlock StreamField
  10. class within `blocks.py`
  11. {% endcomment %}