Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CCAP-513] - Updates home page notice and updates mixpanel data id #1104

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ errors.general-banner-warning=<strong>Sorry,</strong> You've either skipped a re
errors.general-title=Check your answers
#
index.title=Get help paying for child care.
index.notice-html-sda2=Currently, this site is available for families applying in 6 counties: Carroll, DeKalb, Lee, McHenry, Ogle, and Whiteside. Visit our <a href="/faq#questions-about-the-online-application" target="_blank" rel="noopener noreferrer">FAQs</a> to learn more.
index.notice-html-sda2=Currently, this site is available for families applying in 6 counties: Carroll, DeKalb, Lee, McHenry, Ogle, and Whiteside. Visit our <a data-mixpanel="faq-questions-oneline-application" href="/faq#questions-about-the-online-application" target="_blank" rel="noopener noreferrer">FAQs</a> to learn more.
index.notice-html-sda15=This site is available to families living in the following 18 counties in Illinois: Carroll, Clay, Crawford, DeKalb, Edwards, Effingham, Fayett, Jasper, Jefferson, Lawrence, Lee, Marion, McHenry, Ogle, Richland, Wabash, Wayne, Whiteside. Visit our <a data-mixpanel="faq-questions-oneline-application" href="/faq#questions-about-the-online-application" target="_blank" rel="noopener noreferrer">FAQs</a> to learn more.
index.apply-for-benefits=Apply for Child Care Assistance online in 20 minutes.
index.apply-now=Apply now
index.apply-now-other-language=Aplique ahora
Expand Down Expand Up @@ -1155,7 +1156,7 @@ provider-response-submit-start.active.notice=<div class='notice spacing-below-60
provider-response-submit-start.active.reveal-header-1=What is the Child Care Assistance Program (CCAP)?
provider-response-submit-start.active.reveal-body-1=CCAP stands for Child Care Assistance Program. It's a government program funded by the Illinois Department of Human Services (IDHS) to help low-income families pay for child care. Examples of child care include daycare centers, afterschool programming, or care from a friend or family member.
provider-response-submit-start.active.reveal-header-2=Where can I learn more?
provider-response-submit-start.active.reveal-body-2=To learn more about the Child Care Assistance Program (CCAP), you can read the FAQs on <a mixpanel-data="link-to-faq" href="/faq" target="_blank" rel="noopener noreferrer">this website</a>, or visit the <a mixpanel-data="link-to-dhs-site" href="https://www.dhs.state.il.us/page.aspx?item=32004" target="_blank" rel="noopener noreferrer">Illinois Department of Human Services (IDHS) website</a> to learn more.
provider-response-submit-start.active.reveal-body-2=To learn more about the Child Care Assistance Program (CCAP), you can read the FAQs on <a data-mixpanel="link-to-faq" href="/faq" target="_blank" rel="noopener noreferrer">this website</a>, or visit the <a data-mixpanel="link-to-dhs-site" href="https://www.dhs.state.il.us/page.aspx?item=32004" target="_blank" rel="noopener noreferrer">Illinois Department of Human Services (IDHS) website</a> to learn more.
provider-response-submit-start.active.button=Continue to see details

provider-response-submit-start.expired.header=Sorry, {0}. This link has expired.
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<section class="slab slab--light-purple slab--hero">
<div class="grid">
<div class="notice--warning spacing-below-35">
<p th:utext="'<span aria-hidden=true>🌱 </span>' + ${#messages.msg('index.notice-html-sda2')}"></p>
<p th:unless="${@environment.getProperty('il-gcc.enable-sda15-providers') == 'true'}" th:utext="'<span aria-hidden=true>🌱 </span>' + ${#messages.msg('index.notice-html-sda2')}"></p>
<p th:if="${@environment.getProperty('il-gcc.enable-sda15-providers') == 'true'}" th:utext="'<span aria-hidden=true>🌱 </span>' + ${#messages.msg('index.notice-html-sda15')}"></p>
</div>
<div class="tracking-home-language-links width-one-half">
<h1 class="spacing-below-35 spacing-above-5" th:text="#{index.title}"></h1>
Expand Down