Module: GovukDesignSystem::SkipLinkHelper
- Defined in:
- app/helpers/govuk_design_system/skip_link_helper.rb
Instance Method Summary collapse
Instance Method Details
#govukSkipLink(text: nil, html: nil, href: "#content", classes: "", attributes: {}) ⇒ Object
4 5 6 7 8 9 10 11 |
# File 'app/helpers/govuk_design_system/skip_link_helper.rb', line 4 def govukSkipLink(text: nil, html: nil, href: "#content", classes: "", attributes: {}) attributes["class"] = "govuk-skip-link #{classes}" attributes["href"] = href content_tag("a", attributes) do html || text end end |