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

change wording on benefits partial #4439

Merged
merged 3 commits into from
Jan 2, 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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<section class="col col-full-content">
<div class="inset">
<p class="col-720">
A rewarding salary, substantial pension, and generous
A rewarding salary, secure pension, and generous
holidays are just some of the great benefits of a career in teaching.
</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<%= render Categories::CardComponent.new(heading_tag: "h2", card:
OpenStruct.new(
title: "Teacher pensions",
description: "Learn more about the teachers' pension scheme which is one of the most generous in the country.",
description: "Learn more about the teachers' pension scheme which will help you save for your future.",
path: "/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme"
)) %>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ For comparison, you'd work 227 days per year (on average) if you worked full tim

## Teachers' pension scheme

The teachers’ pension scheme is one of the most generous in the country and includes an employer contribution of 28.6%.
One of the great benefits of a teaching career is a secure pension with employer contributions of 28.6%.

It is a 'defined benefit' pension and is:

Expand Down
2 changes: 1 addition & 1 deletion app/views/content/shared/teaching/_benefits.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p>In addition to the personal rewards of teaching <%= @front_matter["subject"] %>, there are practical benefits too, including:</p>
<ul>
<li>a <a href="/life-as-a-teacher/pay-and-benefits/teacher-pay">competitive salary starting at <%= value :salaries_starting_minshortened %></a> (or higher in London)</li>
<li>a <a href="/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme">generous and secure pension</a></li>
<li>a <a href="/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme">secure pension</a></li>
<li>more holiday days than people in many other professions</li>
<li>opportunities for progression</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p>In addition to the personal rewards of teaching, there are practical benefits too, including:</p>
<ul>
<li>a <a href="/life-as-a-teacher/pay-and-benefits/teacher-pay">competitive salary starting at <%= value :salaries_starting_minshortened %></a> (or higher in London)</li>
<li>a <a href="/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme">generous and secure pension</a></li>
<li>a <a href="/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme">secure pension</a></li>
<li>more holiday days than people in many other professions</li>
<li>opportunities for progression</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion spec/views/content/shared/benefits.html.erb_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

it { is_expected.to have_css("ul li") }
it { is_expected.to have_link("competitive salary starting at", href: "/life-as-a-teacher/pay-and-benefits/teacher-pay") }
it { is_expected.to have_link("generous and secure pension", href: "/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme") }
it { is_expected.to have_link("secure pension", href: "/life-as-a-teacher/pay-and-benefits/teachers-pension-scheme") }
it { is_expected.to have_text(subject_name) }
it { is_expected.to have_text(salary_value) }
end
Loading