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.
23 lines
922 B
23 lines
922 B
<div class="app-unread-notification"> |
|
<div class="govuk-width-container"> |
|
<br> |
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-three-quarters"> |
|
<% if notification_count > 1 && current_user.present? %> |
|
<p>Notification 1 of <%= notification_count %></p> |
|
<% end %> |
|
<p class="govuk-!-font-weight-bold"><%= notification.title %></p> |
|
<% if notification.page_content.present? %> |
|
<div class="govuk-body"> |
|
<%= govuk_link_to notification.link_text, notifications_path, class: "govuk-link--inverse govuk-!-font-weight-bold" %> |
|
</div> |
|
<% end %> |
|
</div> |
|
<% if current_user.present? %> |
|
<p class="govuk-grid-column-one-quarter govuk-!-text-align-right "> |
|
<%= govuk_link_to "Dismiss", dismiss_notifications_path, class: "govuk-link--inverse" %> |
|
</p> |
|
<% end %> |
|
</div> |
|
</div> |
|
</div>
|
|
|