You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
459 B
18 lines
459 B
10 months ago
|
<% content_for :title, "Notification" %>
|
||
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link(href: :back) %>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="govuk-grid-row">
|
||
|
<div class="govuk-grid-column-two-thirds">
|
||
|
<h1 class="govuk-heading-xl"><%= @notification.title %></h1>
|
||
|
<p>
|
||
|
<%= sanitize @notification.page_content %>
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<br>
|
||
|
<div>
|
||
|
<%= govuk_button_link_to "Back to #{current_user.present? ? 'Home' : 'Start'}", root_path %>
|
||
|
</div>
|