18 lines
819 B
HTML
18 lines
819 B
HTML
{% load static i18n %}{% comment %}
|
|
Layout-identical across every YKSA service. Do not restyle here; change it in
|
|
all of them or, better, in yksa-web-kit once that exists.
|
|
{% endcomment %}
|
|
<footer class="bg-dark text-bg-dark mt-auto">
|
|
<div class="container pb-4 pt-4">
|
|
<div class="row">
|
|
<div class="col-6 small">
|
|
<div>{% blocktrans %}Copyright © 2026 Sakha Aerospace Systems, LLC{% endblocktrans %}</div>
|
|
</div>
|
|
<div class="col-6 text-end small">
|
|
<a class="text-decoration-none" href="{% url 'privacy-policy' %}">{% trans "Privacy Policy" %}</a>
|
|
–
|
|
<a class="text-decoration-none" href="{% url 'cookie-policy' %}">{% trans "Cookie Policy" %}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|