Add secondary link pattern to page footer

This commit brings back the ‘link under the green button’ bit of the page footer
component.

Previous it had been changed to be a grey button. But there are use cases for
both, maybe even simultaneously.
This commit is contained in:
Chris Hill-Scott
2016-02-05 09:55:27 +00:00
parent cf08f4ef2a
commit f5807d939a
3 changed files with 13 additions and 0 deletions

View File

@@ -28,6 +28,10 @@
} }
&-secondary-link {
display: block;
margin-top: $gutter;
}
.button {} .button {}

View File

@@ -3,6 +3,8 @@
destructive=False, destructive=False,
back_link=False, back_link=False,
back_link_text="Back", back_link_text="Back",
secondary_link=False,
secondary_link_text=None,
delete_link=False, delete_link=False,
delete_link_text="delete" delete_link_text="delete"
) %} ) %}
@@ -19,5 +21,8 @@
{% if back_link %} {% if back_link %}
<a class="page-footer-back-link" href="{{ back_link }}">{{ back_link_text }}</a> <a class="page-footer-back-link" href="{{ back_link }}">{{ back_link_text }}</a>
{% endif %} {% endif %}
{% if secondary_link and secondary_link_text %}
<a class="page-footer-secondary-link" href="{{ secondary_link }}">{{ secondary_link_text }}</a>
{% endif %}
</div> </div>
{% endmacro %} {% endmacro %}

View File

@@ -117,6 +117,10 @@
button_text='Send', back_link='http://example.com', back_link_text="Back to dashboard" button_text='Send', back_link='http://example.com', back_link_text="Back to dashboard"
) }} ) }}
{{ page_footer(
button_text='Sign in', secondary_link='http://example.com', secondary_link_text="Ive forgotten my password"
) }}
<h2 class="heading-large">SMS message</h2> <h2 class="heading-large">SMS message</h2>
<p>Used to show, preview or choose an SMS message.</p> <p>Used to show, preview or choose an SMS message.</p>