saumur: add orange-footer placeholder (#73556)

This commit is contained in:
Thomas Jund 2023-01-26 17:46:49 +01:00 committed by Gitea
parent 5fe0e54659
commit a0183f9fad
2 changed files with 15 additions and 14 deletions

View File

@ -301,7 +301,7 @@ div#services-communes {
#footer-wrapper {
padding-bottom: 0;
#footer {
max-width: 100%;
max-width: $width * 0.75;
}
margin-top: 0;
border-top: 3px solid $orange;
@ -309,25 +309,18 @@ div#services-communes {
a {
text-decoration: none;
}
& > div {
max-width: $width;
margin: 0 auto;
}
}
.text-cell:first-child {
> div {
max-width: $width * 0.75;
}
.text-cell{
strong {
color: $orange;
}
}
.text-cell:not(:first-child) {
background: $orange;
}
.orange-footer-wrapper {
background: $orange;
color: white;
a {
color: white;
a {
color: white;
}
}
}

View File

@ -33,3 +33,11 @@
<div class="banner"></div>
{% endif %}
{% endblock %}
{% block footer-post %}
<div class="orange-footer-wrapper">
<div class="orange-footer page-width">
{% placeholder "orange-footer" acquired=True name="Pied de page orange" optional=True %}
</div>
</div>
{% endblock %}