We were accidentally filtering this attribute when sanitizing the text
since commit 928312e21.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
<footer>
|
|
<div class="row">
|
|
<div class="small-12 large-4 column">
|
|
<h1 class="logo">
|
|
<%= link_to t("layouts.header.open_gov"), root_path %>
|
|
</h1>
|
|
|
|
<p class="info">
|
|
<%= sanitize(t("layouts.footer.description",
|
|
open_source: open_source_link,
|
|
consul: repository_link),
|
|
attributes: allowed_link_attributes) %>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer-sections small-12 large-8 column">
|
|
<div class="small-12 medium-4 column">
|
|
<%= link_to t("layouts.footer.participation_title"), root_path, class: "title" %>
|
|
<p><%= t("layouts.footer.participation_text") %></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="subfooter row">
|
|
<div class="small-12 medium-8 column">
|
|
<%= t("layouts.footer.copyright", year: Time.current.year) %>
|
|
<ul class="legal">
|
|
<li><%= link_to t("layouts.footer.privacy"), page_path("privacy") %></li>
|
|
<li><%= link_to t("layouts.footer.conditions"), page_path("conditions") %></li>
|
|
<li><%= link_to t("layouts.footer.accessibility"), page_path("accessibility") %></li>
|
|
<%= raw footer_legal_content_block %>
|
|
</ul>
|
|
</div>
|
|
|
|
<%= render Layout::SocialComponent.new %>
|
|
</div>
|
|
</footer>
|