templates/default/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Welcome!{% endblock %}
  3. {% block pageId %}home{% endblock %}
  4. {% block body %}
  5. <div class="card">
  6. <div class="card-header h2">Home</div>
  7. <div class="card-body">
  8. <h3>What is eHymns.org?</h3>
  9. <p class="p1">
  10. eHymns.org is a resource comprised entirely of {{ hymnCount|format_number }} hymns that are either public domain or are free for use
  11. in worshipping the one, true God and His Son, Jesus Christ through the power of the Holy Spirit. The
  12. Bible calls us to pursue this worship both in spirit and in truth.
  13. </p>
  14. </div>
  15. </div>
  16. {% endblock %}