diff --git a/cfgov/tccp/jinja2/tccp/landing_page.html b/cfgov/tccp/jinja2/tccp/landing_page.html index ab4818b6ff..40564a2d43 100644 --- a/cfgov/tccp/jinja2/tccp/landing_page.html +++ b/cfgov/tccp/jinja2/tccp/landing_page.html @@ -11,47 +11,58 @@ {% endblock %} +{% block content_intro %} + +{% with + value = { + "heading": heading, + "body": ( + "We know people use credit cards for many reasons. " ~ + "Our database of " ~ + (stats.count or "") ~ + " cards can help you find ones that are best for you." + ), + "image": { + "url": static("apps/tccp/img/explore-credit-cards-hero-lg.png"), + "height": 390, + "width": 940 + }, + "small_image": { + "url": static("apps/tccp/img/explore-credit-cards-hero-lg.png"), + "height": 390, + "width": 1140 + }, + "background_color": "#FFE1B9" + }, + image = image_passthrough +%} + {% include "v1/includes/molecules/hero.html" with context %} +{% endwith %} + +{% endblock content_intro %} + {% block content_main %}
- We know people use credit cards for many reasons. - Our database of {{ stats.count or "" }} - cards can help you find ones that are best for you. -
--