blob: b03941f0a3c38c6c3c9ee9b96aab4e47bd8218eb [file] [edit]
<footer class="site-footer">
<div class="wrapper">
<div class="footer-content">
<div class="footer-section">
<h3>{{ site.title | escape }}</h3>
<p>{{ site.data.content.description | escape }}</p>
</div>
{% for section in site.data.content.footersections %}
<div class="footer-section">
<h3>{{ section.name }}</h3>
<ul>
{% for link in section.links %}
<li><a href="{{ link.url }}">{{ link.text }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
<div class="footer-bottom">
<p>&copy; 2026 Gerrit Code Review. Apache 2.0 Licensed.</p>
</div>
</div>
</footer>